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