From 34341e7aac84de53c85ca755234a71217fc8ab53 Mon Sep 17 00:00:00 2001 From: mpolidori Date: Fri, 12 Oct 2018 00:48:49 -0400 Subject: [PATCH 1/2] Update bootstrap.sh --- examples/bootstrap-script/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bootstrap-script/bootstrap.sh b/examples/bootstrap-script/bootstrap.sh index 405c8694..417d8463 100755 --- a/examples/bootstrap-script/bootstrap.sh +++ b/examples/bootstrap-script/bootstrap.sh @@ -6,7 +6,7 @@ # - The first parameter for the Bootstrap Script is the USER. USER=$1 -if ["$USER" == ""]; then +if [ "$USER" == "" ]; then exit 1 fi # ---------------------------------------------------------------------------- From 10a4ac480969118f6dd50e563b89f83f987b2c01 Mon Sep 17 00:00:00 2001 From: mpolidori Date: Fri, 12 Oct 2018 00:50:30 -0400 Subject: [PATCH 2/2] Update README.md --- examples/bootstrap-script/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bootstrap-script/README.md b/examples/bootstrap-script/README.md index f08a3b8d..d2f27053 100644 --- a/examples/bootstrap-script/README.md +++ b/examples/bootstrap-script/README.md @@ -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. USER=$1 -if ["$USER" == ""]; then +if [ "$USER" == "" ]; then exit 1 fi # ----------------------------------------------------------------------------