We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04d0bcf + 0ba9ed1 commit bca1810Copy full SHA for bca1810
1 file changed
contrib/vagrant/provision-controller.sh
@@ -7,11 +7,11 @@ function echo_color {
7
echo -e "\033[1m$1\033[0m"
8
}
9
10
-THIS_DIR=$(cd $(dirname $0); pwd) # absolute path
11
-CONTRIB_DIR=$(dirname $THIS_DIR)
+THIS_DIR="$(cd $(dirname $0); pwd)" # absolute path
+CONTRIB_DIR=$(dirname "$THIS_DIR")
12
13
# check for Deis' general dependencies
14
-if ! $CONTRIB_DIR/check-deis-deps.sh; then
+if ! "$CONTRIB_DIR/check-deis-deps.sh"; then
15
echo 'Deis is missing some dependencies.'
16
exit 1
17
fi
0 commit comments