diff --git a/clean.sh b/clean.sh index 7f370765e..7aba7ca85 100755 --- a/clean.sh +++ b/clean.sh @@ -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 diff --git a/cook.sh b/cook.sh index 76aa4e192..521668f94 100755 --- a/cook.sh +++ b/cook.sh @@ -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` diff --git a/fetch.sh b/fetch.sh index 3186cb0c6..060ac6e4d 100755 --- a/fetch.sh +++ b/fetch.sh @@ -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`