redox/all.sh
2016-12-28 20:09:03 -07:00

9 lines
84 B
Bash
Executable File

#!/bin/bash
set -e
for recipe in `ls -1 recipes`
do
./cook.sh $recipe $*
done