mirror of
https://github.com/0Nera/BMOSP.git
synced 2024-11-26 02:20:16 +03:00
23 lines
247 B
Bash
Executable File
23 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd modlib/lib/
|
|
chmod +x build.sh
|
|
./build.sh
|
|
cd ../..
|
|
|
|
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 ..
|
|
|
|
python3 scripts/pbuild.py |