Fix bash path in a shebang (#153)

"/bin/bash" is a Linuxism.  "/usr/bin/env bash" is portable.
This commit is contained in:
Alan Somers 2017-10-09 04:33:31 -06:00 committed by Daniel James
parent 34ecafd457
commit c47cf1cf5a

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
echo Boost version tag = $boost_version
(cd ../../libs/accumulators/doc && bjam -a --hash) 2>&1 | tee build.log