Merge pull request #2236 from mpolidori/master

Fix missing spaces in if statement in bootstrap-script and README
This commit is contained in:
Min RK
2018-10-12 11:10:10 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ Here's an example on what you could do in your shell script. See also
# - The first parameter for the Bootstrap Script is the USER. # - The first parameter for the Bootstrap Script is the USER.
USER=$1 USER=$1
if ["$USER" == ""]; then if [ "$USER" == "" ]; then
exit 1 exit 1
fi fi
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------

View File

@@ -6,7 +6,7 @@
# - The first parameter for the Bootstrap Script is the USER. # - The first parameter for the Bootstrap Script is the USER.
USER=$1 USER=$1
if ["$USER" == ""]; then if [ "$USER" == "" ]; then
exit 1 exit 1
fi fi
# ---------------------------------------------------------------------------- # ----------------------------------------------------------------------------