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

Add unfetch script

parent 85781672
No related branches found
No related tags found
No related merge requests found
#!/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" unfetch
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