Skip to content

Commit 5d91825

Browse files
committed
Use more portable #!/usr/bin/env bash shebang
- Update `caf` and `cafrun` to use the more portable shebang `#!/usr/bin/env bash` rather than the old `#!/usr/bin/bash` - The user/system bash will get used
1 parent 2e38f3c commit 5d91825

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/extensions/caf-head

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
# Coarray Fortran (CAF) Compiler Wrapper
44
#

src/extensions/cafrun-head

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
# Coarray Fortran (CAF) Executable Launcher
44
#

0 commit comments

Comments
 (0)