Skip to content

Commit

Permalink
Be consistent when invoking bash in scripts (#348)
Browse files Browse the repository at this point in the history
This aligns with the other scripts which are already invoking bash with
`/usr/bin/env bash`.
  • Loading branch information
Dany Marcoux authored Nov 24, 2022
1 parent 9309bb0 commit e15fe76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand All @@ -8,4 +8,4 @@ mix deps.compile
mix escript.build

mv elixir_analyzer ./bin/elixir_analyzer
chmod +x ./bin/elixir_analyzer
chmod +x ./bin/elixir_analyzer
2 changes: 1 addition & 1 deletion bin/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -euo pipefail

Expand Down

0 comments on commit e15fe76

Please sign in to comment.