/bin: make utilities quit on error

This commit is contained in:
veclavtalica 2025-03-07 02:56:12 +03:00
parent 5df80addeb
commit b97a155de4
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/env sh
# single header api generator with clang
set +e
set -e
clang -I./ -P -E -nostdinc -nobuiltininc -DTWN_NOT_C $TWNROOT/include/twn_game_api.h 2> /dev/null | clang-format

View File

@ -1,7 +1,7 @@
#!/bin/env sh
# townengine tooling interface
set +e
set -e
exe="$(basename $PWD)"
toolpath="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"