'Generic Commit'
Some checks failed
Build-Test-Publish / build (push) Failing after 57s

This commit is contained in:
Your Name
2025-06-01 20:53:41 +12:00
parent 2ec025888b
commit da82558722
2 changed files with 10 additions and 15 deletions

View File

@ -11,10 +11,12 @@ function dothis() {
[ ! -f "${dir}/${thisthing}.sh" ] || cmd="${dir}/${thisthing}.sh"
[ ! -f "${dir}/${thisthing}" ] || cmd="${dir}/${thisthing}"
[ -n "$cmd" ] || die "No ${thisthing} script found in $dir"
echo "Running $cmd"
"$cmd"
if [ -z "$cmd" ]; then
echo "No ${thisthing} script found in $dir"
else
echo "Running $cmd"
"$cmd"
fi
}
function title() {