Skip to content

Commit 7c63473

Browse files
committed
Use portable shebang in compiler/*.sh
`#!/bin/bash` is non-standard and doesn't work on e.g. NixOS.
1 parent 765f8a6 commit 7c63473

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -euv -o pipefail
44

compiler/fetch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -euv -o pipefail
44

0 commit comments

Comments
 (0)