From e15fe762bb5b35d1b1a62034624a39bbc46c71a1 Mon Sep 17 00:00:00 2001 From: Dany Marcoux Date: Thu, 24 Nov 2022 13:27:56 +0100 Subject: [PATCH] Be consistent when invoking bash in scripts (#348) This aligns with the other scripts which are already invoking bash with `/usr/bin/env bash`. --- bin/build.sh | 4 ++-- bin/run.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/build.sh b/bin/build.sh index e62f6e43..fb1a97fb 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -euo pipefail @@ -8,4 +8,4 @@ mix deps.compile mix escript.build mv elixir_analyzer ./bin/elixir_analyzer -chmod +x ./bin/elixir_analyzer \ No newline at end of file +chmod +x ./bin/elixir_analyzer diff --git a/bin/run.sh b/bin/run.sh index 304eddec..44f309f1 100755 --- a/bin/run.sh +++ b/bin/run.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -euo pipefail