generate/release/release.sh: Remove tabs at end of lines

unnecessary tabs at end of lines removed
This commit is contained in:
Elyes HAOUAS 2020-09-23 21:10:57 +02:00 committed by GitHub
parent a1a32ec054
commit 00f12a02fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ set -e # Abort on any error
if [ $NPARAM -gt 1 ]; then
usage "Wrong argument count ($NPARAM)"
exit 1
elif [ $NPARAM -eq 1 ]; then
if [ $1 == notest ]; then
BUILD_TESTS=0
@ -131,7 +131,7 @@ if [ $BUILD_TESTS -eq 1 ]; then
bash build.sh test win
bash build.sh test unix
else
echo "**** Test suites not built because the notest option was used"
fi