mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 23:42:53 +03:00
e3dcea9b27
Use the option clean to clean up the working directory/downloads before building: ./build_all.sh clean
35 lines
676 B
Bash
Executable File
35 lines
676 B
Bash
Executable File
#!/bin/bash
|
|
|
|
clean=false
|
|
case "$1" in
|
|
clean)
|
|
clean=true
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
some_failed=false
|
|
|
|
for file in *; do
|
|
if [ -d $file ]; then
|
|
pushd $file > /dev/null
|
|
dirname=$(basename $file)
|
|
if [ "$clean" == true ]; then
|
|
./package.sh clean_all > /dev/null 2>&1
|
|
fi
|
|
if $(./package.sh > /dev/null 2>&1 ); then
|
|
echo "Built ${dirname}."
|
|
else
|
|
echo "ERROR: Built ${dirname} not succesful!"
|
|
some_failed=true
|
|
fi
|
|
popd > /dev/null
|
|
fi
|
|
done
|
|
|
|
if [ "$some_failed" == false ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi |