redox/scripts/recipe-path.sh
2024-08-20 13:38:54 -07:00

9 lines
132 B
Bash
Executable file

#!/usr/bin/env bash
FIND_RECIPE="find cookbook/recipes -maxdepth 4 -name"
for recipe in $*
do
${FIND_RECIPE} "${recipe}"
done