Skip to content

Commit

Permalink
Removed -e option (#616)
Browse files Browse the repository at this point in the history
The -e option exits immediately on an error, which will cause the
command to exit if no version manager is detected. This means we won't
try to invoke elixir from the path.

From my limited knowledge of bash, it looks like this command was
added in error.

Fixes #615
  • Loading branch information
scohen authored Feb 22, 2024
1 parent 9f1d6cf commit aba16bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/start_lexical.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -eo pipefail
set -o pipefail

script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"

Expand Down

0 comments on commit aba16bb

Please sign in to comment.