Remove -e

This commit is contained in:
Mahor
2022-08-04 16:42:50 +04:30
parent fdfceaf7dd
commit 1e29293dd0

View File

@@ -274,7 +274,7 @@ make_windows_package() {
# set -e is not recommended and unpredictable.
# see https://stackoverflow.com/questions/64786/error-handling-in-bash
# and http://mywiki.wooledge.org/BashFAO/105
set -euo pipefail
set -uo pipefail
error() {
local parent_lineno="$1"
local message="$2"
@@ -290,4 +290,3 @@ trap 'error $LINENO ""' ERR
main "$@"; exit