Skip to content

Commit

Permalink
fix: Use 'set -E' in all scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuxdude committed Jun 16, 2024
1 parent 68b2deb commit 10127cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG IMAGE_NODEJS_VERSION

# hadolint ignore=SC1091
RUN \
set -e -o pipefail \
set -E -e -o pipefail \
&& homelab install-tar-dist \
https://github.com/nvm-sh/nvm/archive/refs/tags/${NVM_VERSION:?}.tar.gz \
${NVM_SHA256_CHECKSUM:?} \
Expand Down
2 changes: 1 addition & 1 deletion metadata/metadata
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -e -o pipefail
set -E -e -o pipefail

# Add repo specific metadata here.

Expand Down

0 comments on commit 10127cd

Please sign in to comment.