redox/scripts/recipe-path.sh
2024-08-15 14:54:36 +00:00

9 lines
132 B
Bash

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