diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-04 11:46:04 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-04 11:46:04 +0100 |
commit | 03d469bd201678293c1e63af13e86a4fe8e55fef (patch) | |
tree | d043b2234538544c7c89f7757219bdd4c4ad2adb | |
parent | dff112f989733e7df0758aca2203bbbd466f98e6 (diff) |
fixed minor presentational issue
-rwxr-xr-x | provision_openbsd.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/provision_openbsd.ksh b/provision_openbsd.ksh index 1b1cd5d..e9316a0 100755 --- a/provision_openbsd.ksh +++ b/provision_openbsd.ksh @@ -32,7 +32,7 @@ fi create_venvs() { cd $1 - print "\nCreating the virtualenv at $1/.venv. This might take a couple of minutes..." + print "Creating the virtualenv at $1/.venv. This might take a couple of minutes..." print -n "Creating virtualenv..." python3 -m venv .venv . ./.venv/bin/activate @@ -92,8 +92,8 @@ if [ $INC_CODE -eq 1 ]; then print -n "Fetching bcompiler-engine..." if [ ! -d $bcompiler_src ]; then git clone git@github.com:yulqen/bcompiler-engine.git $bcompiler_src > /dev/null 2>&1 - create_venvs $bcompiler_src print "ok" + create_venvs $bcompiler_src else print "bcompiler-engine directory already exists." fi |