Prevent argument breaking by spaces

This commit is contained in:
Sheogorath 2017-10-10 13:36:37 +02:00
parent a99cac0cf0
commit 6ed44f0864
No known key found for this signature in database
GPG Key ID: 1F05CC3635CDDFFD
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ set -e
# run command at repo root
CURRENT_PATH=$PWD
if [ -d .git ]; then
cd $(git rev-parse --show-toplevel)
cd "$(git rev-parse --show-toplevel)"
fi
if ! type npm > /dev/null
@ -43,4 +43,4 @@ Read more info at https://github.com/hackmdio/hackmd#configuration-files
EOF
# change directory back
cd $CURRENT_PATH
cd "$CURRENT_PATH"