fix(helpers:update): fix missing space in mkdir cmd

This commit is contained in:
Asif Bacchus 2021-07-27 22:19:54 -06:00
parent fcd24f0387
commit e29ca7690a
1 changed files with 1 additions and 1 deletions

View File

@ -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