aboutsummaryrefslogtreecommitdiffstats
path: root/provision_openbsd.ksh
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-07-04 13:57:18 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-07-04 13:57:18 +0100
commita58c43b474dbd764eb2e3530cf21cc77fa446ba9 (patch)
tree5c2dc5a31861ce06fdfc2fdcf7b0d4f6c5dbfc41 /provision_openbsd.ksh
parent03d469bd201678293c1e63af13e86a4fe8e55fef (diff)
added ded project
Diffstat (limited to 'provision_openbsd.ksh')
-rwxr-xr-xprovision_openbsd.ksh10
1 files changed, 10 insertions, 0 deletions
diff --git a/provision_openbsd.ksh b/provision_openbsd.ksh
index e9316a0..b2858d0 100755
--- a/provision_openbsd.ksh
+++ b/provision_openbsd.ksh
@@ -24,6 +24,7 @@ done
dbasik_src=~/code/python/dbasik
datamaps_src=~/code/python/datamaps
bcompiler_src=~/code/python/bcompiler-engine
+ded_src=~/code/python/ded
command -v vim > /dev/null 2>&1
if [ "$?" != 0 ]; then
@@ -71,6 +72,15 @@ if [ $INC_CODE -eq 1 ]; then
print "dotfiles directory already exists."
fi
+ print -n "Fetching ded..."
+ if [ ! -d $ded_src ]; then
+ git clone git@gitlab.com:yulqen/ded.git $ded_src > /dev/null 2>&1
+ print "ok"
+ create_venvs $ded_src
+ else
+ print "dbasik directory already exists."
+ fi
+
print -n "Fetching dbasik..."
if [ ! -d $dbasik_src ]; then
git clone git@github.com:yulqen/dbasik.git $dbasik_src > /dev/null 2>&1