1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 12:54:23 +00:00

Ports: Don't add ports to the "built" list unless successful

This commit is contained in:
Tim Schumacher 2021-11-06 01:06:56 +01:00 committed by Andreas Kling
parent 85db9aac49
commit b220b45c5e

View File

@ -49,7 +49,6 @@ for file in *; do
popd > /dev/null
continue
fi
built_ports="$built_ports $port $(./package.sh showproperty depends) "
if [ "$clean" == true ]; then
if [ "$verbose" == true ]; then
@ -64,6 +63,8 @@ for file in *; do
else
echo "ERROR: Build of ${port} was not successful!"
some_failed=true
popd > /dev/null
continue
fi
else
if ./package.sh > /dev/null 2>&1; then
@ -71,8 +72,12 @@ for file in *; do
else
echo "ERROR: Build of ${port} was not successful!"
some_failed=true
popd > /dev/null
continue
fi
fi
built_ports="$built_ports $port $(./package.sh showproperty depends) "
popd > /dev/null
fi
done