Skip to content

Commit

Permalink
Explicitly don't fail on error in library calls (required for condito…
Browse files Browse the repository at this point in the history
…nals)
  • Loading branch information
awalsh128 committed Mar 3, 2024
1 parent a6c3917 commit f2fc6d1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/bin/bash

# Don't fail on error. We use the exit status as a conditional.
#
# This is the default behavior but can be overriden by the caller in the
# SHELLOPTS env var.
set +e

###############################################################################
# Execute the Debian install script.
# Arguments:
Expand Down

0 comments on commit f2fc6d1

Please sign in to comment.