mirror of
https://github.com/status-im/codimd.git
synced 2025-01-11 23:14:24 +00:00
Prevent argument breaking by spaces
This commit is contained in:
parent
a99cac0cf0
commit
6ed44f0864
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user