fix(helpers:update): fix missing space in mkdir cmd
This commit is contained in:
+1
-1
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user