Более безопасный способ обхода папок модулей

This commit is contained in:
Aren Elchinyan 2023-12-07 13:16:34 +03:00
parent 4bcd50a63f
commit 2de168dc78
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ chmod +x */build.sh
for dir in */; do
if [ $dir != "bin/" ]; then
cd $dir && ./build.sh && cd ..
cd $dir
./build.sh
cd ..
fi
done