Skip to content
Snippets Groups Projects
Commit 38e31db6 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Add clean script

parent 8acc2594
No related branches found
No related tags found
No related merge requests found
clean.sh 0 → 100755
#!/usr/bin/env bash
set -e
source config.sh
if [ $# = 0 ]
then
recipes="$(ls -1 recipes)"
else
recipes="$@"
fi
for recipe in $recipes
do
./cook.sh "$recipe" distclean
done
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