mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 13:54:19 +08:00
Add unfetch script
This commit is contained in:
parent
857816728e
commit
00bac37c72
16
unfetch.sh
Executable file
16
unfetch.sh
Executable file
@ -0,0 +1,16 @@
|
||||
#!/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
|
||||
Loading…
Reference in New Issue
Block a user