Skip to content

Commit 202d0c3

Browse files
committed
Remove set x flag in build zip scripts
1 parent a673182 commit 202d0c3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

scripts/test-build-install-zip-file.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -euxo pipefail
3+
set -euo pipefail
44

55
cleanup() {
66
local r=$?

scripts/test-build-install-zip.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -euxo pipefail
3+
set -euo pipefail
44

55
cleanup() {
66
local r=$?

scripts/test-build-zip.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
2-
3-
set -euxo pipefail
2+
set -euo pipefail
43

54
cleanup() {
65
local r=$?
@@ -36,7 +35,7 @@ go run ./scripts/gpgkey
3635

3736
for d in test/packages/*/*/; do
3837
# Packages in false_positives can have issues.
39-
if [ "$(testype $d)" == "false_positives" ]; then
38+
if [ "$(testype "$d")" == "false_positives" ]; then
4039
continue
4140
fi
4241
echo "--- Building zip package: ${d}"

0 commit comments

Comments
 (0)