Fix make clean

This commit is contained in:
Wildan Mubarok 2025-07-03 13:32:51 +00:00
parent 1f238c0f91
commit 27ea7b99d8
2 changed files with 3 additions and 2 deletions

View File

@ -12,5 +12,5 @@ fi
for recipe_path in $recipes
do
./cook.sh "$recipe_path" distclean
IGNORE_ERROR=1 ./cook.sh "$recipe_path" distclean
done

View File

@ -369,7 +369,8 @@ then
do
op "$recipe_name" "$i"
done
else
elif [ "$IGNORE_ERROR" != "1" ]
then
echo "cook.sh: recipe '$recipe_name' at not found" >&2
exit 1
fi