From f632a61cb9a29fff2fea86b57c605d5644629eec Mon Sep 17 00:00:00 2001 From: cheatfate Date: Mon, 12 Oct 2020 16:15:15 +0300 Subject: [PATCH] Fix posix version. --- scripts/makedir.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makedir.sh b/scripts/makedir.sh index 3238715cd..c7159c4c8 100755 --- a/scripts/makedir.sh +++ b/scripts/makedir.sh @@ -19,5 +19,5 @@ then fi else # Create full path with 0750 permissions. - mkdir -m 0750 -p $(1) + mkdir -m 0750 -p $1 fi