build: Don't hardcode the path of bash
Bash is not always installed in /bin and we should not hardcode the path of it in source code which is expected to be built on many operating systems and distributions. Since most scripts using #!/bin/bash here doesn't have any bashism, they can be converted to #!/bin/sh instead of using /usr/bin/env trick.
This commit is contained in:

committed by
Georges Basile Stavracas Neto

parent
365ea2fd56
commit
b2e75b5da0
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
outputfile=$1
|
||||
shift
|
||||
|
Reference in New Issue
Block a user