Merge branch 'fetch-subdirectories' into 'master'

Fix fetch.sh for subdirs

See merge request redox-os/cookbook!387
This commit is contained in:
Jeremy Soller 2024-08-15 14:56:40 +00:00
commit 420fe11a6a

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