run-tests: fix arg error messages
$1 was not substituted due to single quotes.
This commit is contained in:
parent
572967d3ad
commit
b552d17d55
1 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ while :; do
|
|||
shift
|
||||
shift
|
||||
else
|
||||
>&2 echo 'Error: "$1" requires an argument.'
|
||||
>&2 echo "Error: $1 requires an argument."
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
|
@ -49,7 +49,7 @@ while :; do
|
|||
shift
|
||||
shift
|
||||
else
|
||||
>&2 echo 'Error: "$1" requires an argument.'
|
||||
>&2 echo "Error: $1 requires an argument."
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue