fix(helpers:update): fix missing space in mkdir cmd
This commit is contained in:
parent
fcd24f0387
commit
e29ca7690a
@ -27,7 +27,7 @@ okNotify() {
|
||||
|
||||
makeDirectory() {
|
||||
if ! [ -d "./$1" ]; then
|
||||
if ! mkdir"./$1" >/dev/null 2>&1; then
|
||||
if ! mkdir "./$1" >/dev/null 2>&1; then
|
||||
errMsgString="Unable to make '$1' directory."
|
||||
errMsg "$errMsgString" 40
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user