diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-04 13:57:18 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-04 13:57:18 +0100 |
commit | a58c43b474dbd764eb2e3530cf21cc77fa446ba9 (patch) | |
tree | 5c2dc5a31861ce06fdfc2fdcf7b0d4f6c5dbfc41 /provision_openbsd.ksh | |
parent | 03d469bd201678293c1e63af13e86a4fe8e55fef (diff) |
added ded project
Diffstat (limited to 'provision_openbsd.ksh')
-rwxr-xr-x | provision_openbsd.ksh | 10 |
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 |