diff options
Diffstat (limited to 'src/auditor')
-rwxr-xr-x | src/auditor/test-sync.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auditor/test-sync.sh b/src/auditor/test-sync.sh index e0299f636..b40f11557 100755 --- a/src/auditor/test-sync.sh +++ b/src/auditor/test-sync.sh @@ -3,13 +3,13 @@ set -eu # Exit, with status code "skip" (no 'real' failure) -function exit_skip() { +exit_skip() { echo $1 exit 77 } # Exit, with error message (hard failure) -function exit_fail() { +exit_fail() { echo $1 exit 1 } |