Skip to content

Commit

Permalink
fix(Install.sh): Add single qoutes to correctly create the dir
Browse files Browse the repository at this point in the history
  • Loading branch information
nanospearing committed May 9, 2023
1 parent 45c8985 commit ed63c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ install_standalone() {

# -w only works if the directory exists so try creating it first. If this
# fails we can ignore the error as the -w check will then swap us to sudo.
sh_c mkdir -p "$STANDALONE_INSTALL_PREFIX" 2> /dev/null || true
sh_c 'mkdir -p "$STANDALONE_INSTALL_PREFIX"' 2> /dev/null || true

sh_c="sh_c"
if [ ! -w "$STANDALONE_INSTALL_PREFIX" ]; then
Expand Down

0 comments on commit ed63c3d

Please sign in to comment.