This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git
commit 6b9f1ce65af68ba8e3d018e7ecc5edc8b9860124 Author: Volkan Yazıcı <[email protected]> AuthorDate: Mon Apr 22 21:36:38 2024 +0200 Enable "strict mode" for `generate-email.sh` --- .github/generate-email.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/generate-email.sh b/.github/generate-email.sh index 59bf98d..09fabc5 100755 --- a/.github/generate-email.sh +++ b/.github/generate-email.sh @@ -16,6 +16,10 @@ # limitations under the License. # +# Enable strict mode +set -euo pipefail +IFS=$'\n\t' + SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd) stderr() {
