Skip to content

Commit

Permalink
pkgdata: Add script pipefail protection
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Grant <[email protected]>
(cherry picked from commit ca9bc13)
Signed-off-by: Mark Grant <[email protected]>
  • Loading branch information
m-grant-prg committed Jul 10, 2023
1 parent 6e8ea09 commit b714119
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/data/pkgdata/trusted.sh.d/add-hermes.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,12 @@
# 22/11/2021 MG 1.0.4 Tighten SPDX tag. #
# 10/02/2022 MG 1.0.5 apt-key is deprecated, use gpg. #
# 10/07/2023 MG 1.0.6 Fix shellcheck warnings. #
# Add pipefail protection. #
# #
#########################################################################


set -e
set -eo pipefail


##################
Expand Down
3 changes: 2 additions & 1 deletion src/data/pkgdata/trusted.sh.d/add-mgrant-utils-ppa.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@
# 22/11/2021 MG 1.0.2 Tighten SPDX tag. #
# 10/02/2022 MG 1.0.3 apt-key is deprecated, use gpg. #
# 10/07/2023 MG 1.0.4 Fix shellcheck warnings. #
# Add pipefail protection. #
# #
#########################################################################


set -e
set -eo pipefail


##################
Expand Down
3 changes: 2 additions & 1 deletion src/data/pkgdata/trusted.sh.d/add-raspberrypi.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,12 @@
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# 11/02/2022 MG 1.0.4 apt-key is deprecated, use gpg. #
# 10/07/2023 MG 1.0.5 Fix shellcheck warnings. #
# Add pipefail protection. #
# #
#########################################################################


set -e
set -eo pipefail


##################
Expand Down

0 comments on commit b714119

Please sign in to comment.