Skip to content

Commit

Permalink
fix(foundryup): actually make set -e work
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Nov 18, 2023
1 parent c948388 commit f86f2eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foundryup/foundryup
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -e
set -eo pipefail

BASE_DIR=${XDG_CONFIG_HOME:-$HOME}
FOUNDRY_DIR=${FOUNDRY_DIR:-"$BASE_DIR/.foundry"}
Expand Down Expand Up @@ -315,4 +315,4 @@ Contribute : https://github.com/orgs/foundry-rs/projects/2/
}


main "$@" || exit 1
main "$@"

0 comments on commit f86f2eb

Please sign in to comment.