fix(run): local tasks override non-local tasks

This commit is contained in:
Oliver Davies 2023-10-19 23:07:38 +02:00
parent 08e81c5e16
commit fbfd751621
4 changed files with 12 additions and 12 deletions

View file

@ -4,9 +4,6 @@
set -eu
# Include any local tasks.
source run.local || true
# Run automated tests as part of the Continuous Integration (CI) pipeline.
function ci:test {
lint:dockerfile
@ -133,6 +130,9 @@ function _run {
"${service}" "${@}"
}
# Include any local tasks.
source run.local || true
TIMEFORMAT=$'\nTask completed in %3lR'
time "${@:-help}"