Skip to content

Commit 21ac978

Browse files
committed
Fix space issue for rackspace controller
1 parent 8201066 commit 21ac978

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

contrib/rackspace/provision-rackspace-controller.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ function echo_color {
1313
}
1414

1515
THIS_DIR=$(cd $(dirname $0); pwd) # absolute path
16-
CONTRIB_DIR=$(dirname $THIS_DIR)
16+
CONTRIB_DIR=$(dirname "$THIS_DIR")
1717

1818
# check for Deis' general dependencies
19-
if ! $CONTRIB_DIR/check-deis-deps.sh; then
19+
if ! "$CONTRIB_DIR/check-deis-deps.sh"; then
2020
echo 'Deis is missing some dependencies.'
2121
exit 1
2222
fi

0 commit comments

Comments
 (0)