mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 11:54:17 +08:00
9 lines
84 B
Bash
Executable File
9 lines
84 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for recipe in `ls -1 recipes`
|
|
do
|
|
./cook.sh $recipe $*
|
|
done
|