This commit is contained in:
Jeremy Soller 2025-08-13 09:38:34 -06:00
commit cc58d96c6f
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -325,7 +325,7 @@ if [ -n "$1" ]
then
if (echo "$1" | grep '.*/.*' >/dev/null); then
recipe_name=$(basename "$1")
recipe_path="recipes/$1"
recipe_path="$1"
else
recipe_name="$1"
recipe_path=`target/release/find_recipe $recipe_name`

View File

@ -26,7 +26,7 @@ for recipe_path in $recipes
do
if (echo "$recipe_path" | grep '.*/.*' >/dev/null); then
recipe_name=$(basename "$recipe_path")
recipe_path="recipes/$recipe_path"
recipe_path="$recipe_path"
else
recipe_name="$recipe_path"
recipe_path=`target/release/find_recipe $recipe_name`