fix(lib/run/run.sh): use '-path' instead of '-wholename'

devops
jwerle 2 years ago committed by Joseph Werle
parent 33359fccce
commit fea1bc2690

@ -118,7 +118,7 @@ bpkg_run () {
for (( i = 1; i < ${#parts[@]}; i++ )); do
if [[ "${parts[$i]}" =~ \*.\* ]]; then
args+=($(find . -wholename "${parts[$i]}"))
args+=($(find . -path "${parts[$i]}"))
else
args+=("${parts[$i]}")
fi

Loading…
Cancel
Save