From ca0f5a1a15d5615129d01bee082ae23201cba6bc Mon Sep 17 00:00:00 2001 From: githubaf Date: Wed, 21 Sep 2022 10:16:42 +0200 Subject: [PATCH] Update install Directories in sdk=mhi had +x not set -> access denied --- sdk/install | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/install b/sdk/install index 41a3e35..5573def 100755 --- a/sdk/install +++ b/sdk/install @@ -32,7 +32,8 @@ case $1 in if [ ! -e "build/$2" ] || [ "$(ls -l build/$2)" == "total 0" ]; then mkdir -p build/$2 pushd build/$2 - lha x "../../download/$file" + lha x "../../download/$file" + find . -type d -exec chmod +x {} \; popd fi fi