From 6cd3f8d4636a684e408dce69dd8e3299cbd2df8f Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 22 Nov 2023 22:54:44 +0000 Subject: [PATCH] build-configs(update) --- run | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/run b/run index fa7009f..b209933 100755 --- a/run +++ b/run @@ -2,7 +2,8 @@ # Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs. -set -eu +set -o errexit +set -o pipefail # Run automated tests as part of the Continuous Integration (CI) pipeline. function ci:test { @@ -95,7 +96,7 @@ function _run { } # Include any local tasks. -source run.local || true +[[ -e run.local ]] && source run.local TIMEFORMAT=$'\nTask completed in %3lR' time "${@:-help}"