aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xprovision_openbsd.ksh4
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