mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-21 12:24:17 +08:00
17 lines
238 B
Bash
Executable File
17 lines
238 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
source config.sh
|
|
|
|
if [ $# = 0 ]
|
|
then
|
|
recipes="$(ls -1 recipes)"
|
|
else
|
|
recipes="$@"
|
|
fi
|
|
|
|
for recipe in $recipes
|
|
do
|
|
echo -e "\033[01;38;5;215mfetch - fetching $recipe\033[0m" >&2
|
|
./cook.sh "$recipe" fetch
|
|
done
|