add set -e option in shell scripts
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Simon Vieille 2024-07-29 12:19:44 +02:00
commit e1305e18dd
Signed by: deblan
GPG key ID: 579388D585F70417
3 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
VERSION="$1"
for ARCH in amd64 arm64; do

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
(
printf ".TH expiration-check 1 \"%s\" \"Manual of expiration-check\"\n" "$(date +'%Y-%m-%d')"
printf ".LO 1\n"

View file

@ -1,5 +1,7 @@
#!/bin/sh
set -e
VERSION="$1"
for OS in linux windows darwin; do