BMOSP/build.sh

18 lines
193 B
Bash
Raw Normal View History

#!/bin/sh
cd modules/
mkdir -p bin
dos2unix */*.sh
chmod +x */build.sh
for dir in */; do
if [ $dir != "bin/" ]; then
cd $dir
./build.sh
cd ..
fi
done
cd ..
2023-12-12 21:11:06 +03:00
python3 scripts/pbuild.py