Fix help output of buildtests and check scripts

This commit is contained in:
Christoph Hertzberg 2016-05-11 19:39:09 +02:00
parent 33ca7e3c8d
commit bda21407dd
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
if [[ $# != 1 || $1 == *help ]]
then
echo "usage: ./check regexp"
echo "usage: $0 regexp"
echo " Builds tests matching the regexp."
echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'"

View File

@ -3,7 +3,7 @@
if [[ $# != 1 || $1 == *help ]]
then
echo "usage: ./check regexp"
echo "usage: $0 regexp"
echo " Builds and runs tests matching the regexp."
echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
echo " For example, to launch 5 concurrent builds, use EIGEN_MAKE_ARGS='-j5'"