summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-06-11 15:54:55 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-06-11 15:54:55 -0400
commit491dde55a5d153b567dc20b203b492f7c73b64c0 (patch)
tree8230a8541080331b734acf5a0c7e781147019701 /build
parent0d6822ee71c1f60c8003e13ab149501e586f9ae6 (diff)
downloadbfs-491dde55a5d153b567dc20b203b492f7c73b64c0.tar.xz
build: Use exec "$@" rather than just "$@"
This avoids extra error reporting from set -e.
Diffstat (limited to 'build')
-rwxr-xr-xbuild/msg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/msg.sh b/build/msg.sh
index a7da31b..2249125 100755
--- a/build/msg.sh
+++ b/build/msg.sh
@@ -59,4 +59,4 @@ if is_loud; then
printf '%s\n' "$*"
fi
-"$@"
+exec "$@"