redox/scripts/recipe-path.sh

9 lines
132 B
Bash
Raw Permalink Normal View History

2024-08-15 16:54:36 +02:00
#!/usr/bin/env bash
FIND_RECIPE="find cookbook/recipes -maxdepth 4 -name"
for recipe in $*
do
${FIND_RECIPE} "${recipe}"
done