Skip to content
Snippets Groups Projects
Commit fd88ee9c authored by Wren Turkal's avatar Wren Turkal
Browse files

Make clean work when a recipe has no recipe.sh.


Previously, one had to have a recipe.sh in all recipe directories in
order to run `make clean` successfully. This fixes that.

Signed-off-by: default avatarWren Turkal <wt@penguintechs.org>
parent 9a60468f
No related branches found
No related tags found
1 merge request!243Make clean work when a recipe has no recipe.sh.
......@@ -520,7 +520,9 @@ then
cd "${COOKBOOK_RECIPE}"
source recipe.sh
if [ -e recipe.sh ]; then
source recipe.sh
fi
ops=()
for arg in "${@:2}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment