Update build configuration files

This commit is contained in:
Oliver Davies 2024-07-31 01:22:12 +01:00
parent 0a277ff0ba
commit bfe1d7eca8

3
run
View file

@ -35,7 +35,8 @@ function start {
} }
# Include any local tasks. # Include any local tasks.
[[ -e run.local ]] && source run.local # https://stackoverflow.com/a/6659698
[[ -e "${BASH_SOURCE%/*}/run.local" ]] && source "${BASH_SOURCE%/*}/run.local"
TIMEFORMAT="Task completed in %3lR" TIMEFORMAT="Task completed in %3lR"
time "${@:-help}" time "${@:-help}"