Skip to content

Commit

Permalink
Fix interpreter shebang on build and test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nlowe committed Mar 31, 2018
1 parent 91f5e21 commit 4f0cebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Build/build.sh
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash
set -euo pipefail

SCRIPT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Expand Down
2 changes: 1 addition & 1 deletion Build/test.sh
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash
set -euo pipefail

SCRIPT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
Expand Down

0 comments on commit 4f0cebc

Please sign in to comment.