diff options
author | Allen Winter <allen.winter@kdab.com> | 2022-09-24 11:22:03 -0400 |
---|---|---|
committer | Allen Winter <allen.winter@kdab.com> | 2022-09-24 11:22:03 -0400 |
commit | 72c23623801af9ff450a98518db84da89fba83ed (patch) | |
tree | 3469d31e4d8c627d4a504f8a0df249223e2ef8d7 /scripts/buildtests.sh | |
parent | a73973a5bbd32d7d550177480b5a780188a59ae1 (diff) | |
download | libical-git-72c23623801af9ff450a98518db84da89fba83ed.tar.gz |
scripts/buildtests.sh - fix supporting the '-p' option
implement the short switch option for --no-codespell
Diffstat (limited to 'scripts/buildtests.sh')
-rwxr-xr-x | scripts/buildtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/buildtests.sh b/scripts/buildtests.sh index 360e7210..1d075127 100755 --- a/scripts/buildtests.sh +++ b/scripts/buildtests.sh @@ -544,7 +544,7 @@ CODESPELL() { ##### END FUNCTIONS ##### #TEMP=`getopt -o hmkpctbsnlgadu --long help,no-cmake-compat,no-krazy,no-codespell,no-cppcheck,no-tidy,no-scan,no-splint,no-ninja,no-clang-build,no-gcc-build,no-asan-build,no-tsan-build,no-ubsan-build,no-memc-build -- "$@"` -TEMP=`getopt hmkctbsnlgadux $*` +TEMP=`getopt hmkpctbsnlgadux $*` if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi # Note the quotes around `$TEMP': they are essential! eval set -- "$TEMP" |