The pattern "build*/" is now excluded recursively and not only at the root. Trivial fix for master.
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
setopt extendedglob
|
|
|
|
ls -1 ((^build*)/)#/(#i)*.^(py|sh|run|sh|csh|pl|perl|bin|out)(.x) 2>/dev/null || exit 0
|
|
exit 1
|