Skip to content

Commit 8dc1ec0

Browse files
Use portable shebang (#!/usr/bin/env bash) for bash scripts
Replace #!/bin/bash with #!/usr/bin/env bash for portability across systems where bash may not be installed at /bin/bash (e.g. NixOS, some BSDs, non-standard installations).
1 parent 66f3dd4 commit 8dc1ec0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/static_assertions/testrunner.bash

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
# mess with output to confuse jenkins build failure indications because these
44
# tests pass when compilation fails. Multiple pipes for OSX compatibility

0 commit comments

Comments
 (0)