Skip to content

Commit

Permalink
Don't hard-code path to bash. (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Jun 9, 2022
1 parent a932718 commit 0805a19
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hooks/command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source $(dirname ${BASH_SOURCE})/common

# Use default julia test running harness
Expand Down
2 changes: 1 addition & 1 deletion hooks/common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail

coverage=${BUILDKITE_PLUGIN_JULIA_TEST_COVERAGE:-true}
Expand Down
2 changes: 1 addition & 1 deletion hooks/post-command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source $(dirname ${BASH_SOURCE})/common

# If we either always upload a trace (or only upload on error), pack it and append it to our artifact paths
Expand Down
2 changes: 1 addition & 1 deletion hooks/pre-command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
source $(dirname ${BASH_SOURCE})/common

echo "--- :julia: Instantiating project"
Expand Down

0 comments on commit 0805a19

Please sign in to comment.