Skip to content

Commit

Permalink
Removed error exit from module setup
Browse files Browse the repository at this point in the history
Module setup was using `set -e`, but since the script is sourced, that
can have unintended consequences later in the script.
  • Loading branch information
WalterKolczynski-NOAA committed Oct 25, 2022
1 parent 56e6880 commit 0b8ff56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ush/module-setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -eu
set -u

if [[ $MACHINE_ID = jet* ]] ; then
# We are on NOAA Jet
Expand Down

0 comments on commit 0b8ff56

Please sign in to comment.