Skip to content

Commit 6ed6b66

Browse files
[gardening] Use '#!/usr/bin/env bash' instead of '#!/bin/bash'
Before this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 10 $ git grep '#!/bin/bash' | wc -l 1 ``` After this commit: ``` $ git grep '#!/usr/bin/env bash' | wc -l 11 $ git grep '#!/bin/bash' | wc -l 0 ```
1 parent f59b897 commit 6ed6b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# utils/build-toolchain - documents process for building a toolchain
44
#

0 commit comments

Comments
 (0)