Fix fetch.sh for subdirs

This commit is contained in:
Ron Williams 2024-08-04 11:04:11 -07:00
parent eeff190c0e
commit 8ec5b10b24

View File

@ -12,10 +12,18 @@ fi
for recipe_path in $recipes
do
if (echo "$recipe_path" | grep '.*/.*' >/dev/null); then
recipe_name=$(basename "$recipe_path")
recipe_path="recipes/$recipe_path"
else
recipe_name="$recipe_path"
recipe_path=`target/release/find_recipe $recipe_name`
fi
if [ -e "$recipe_path/recipe.toml" ]
then
target/release/cook --fetch-only "$recipe_path"
target/release/cook --fetch-only "$recipe_name"
else
./cook.sh "$recipe_path" fetch
./cook.sh "$recipe_name" fetch
fi
done