We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bccd07b commit dfdd257Copy full SHA for dfdd257
1 file changed
resources/deb/build.sh
@@ -1,5 +1,8 @@
1
#!/usr/bin/env bash
2
3
+set -Eeuo pipefail
4
+trap 'echo -e "⚠ Error ($0:$LINENO): $(sed -n "${LINENO}p" "$0" 2> /dev/null | grep -oE "\S.*\S|\S" || true)" >&2; return 3 2> /dev/null || exit 3' ERR
5
+
6
ROOT=$(pwd)
7
DISTS=$ROOT/dists
8
@@ -60,8 +63,6 @@ function _build_local() {
60
63
}
61
64
62
65
function _build() { (
- set -e
-
66
build
67
); }
68
0 commit comments