Fix bash paths in shebangs
"/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable.
This commit is contained in:
parent
59d5566e29
commit
fd486f7acd
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright 2014 Vladimir Prus
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright 2004, 2005, 2006 Vladimir Prus
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright 2004 Aleksey Gurtovoy
|
||||
# Copyright 2006 Rene Rivera
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
for python in build/*.py; do
|
||||
jam="${python%.py}.jam"
|
||||
|
Loading…
Reference in New Issue
Block a user