diff options
| author | van Hauser <vh@thc.org> | 2023-11-09 15:13:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-09 15:13:51 +0100 |
| commit | 61e27c6b54f7641a168b6acc6ecffb1754c10918 (patch) | |
| tree | a82934c35bd84b2893b71646080e46433083d516 /afl-system-config | |
| parent | 85c5b5218c6a7b2289f309fbd1625a5d0a602a00 (diff) | |
| parent | a6efdfdb15c8a48967ff773a0ca530a68544cd8f (diff) | |
| download | afl++-61e27c6b54f7641a168b6acc6ecffb1754c10918.tar.gz | |
Merge pull request #1906 from AFLplusplus/dev
Dev
Diffstat (limited to 'afl-system-config')
| -rwxr-xr-x | afl-system-config | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/afl-system-config b/afl-system-config index e64857eb..c633e4e8 100755 --- a/afl-system-config +++ b/afl-system-config @@ -1,5 +1,5 @@ #!/bin/sh -test "$1" = "-h" -o "$1" = "-hh" && { +test "$1" = "-h" -o "$1" = "-hh" -o "$1" = "--help" && { echo 'afl-system-config by Marc Heuse <mh@mh-sec.de>' echo echo $0 @@ -13,6 +13,10 @@ test "$1" = "-h" -o "$1" = "-hh" && { echo configuration options. exit 0 } +if [ $# -ne 0 ]; then + echo "ERROR: Unknown option(s): $@" + exit 1 +fi DONE= PLATFORM=`uname -s` |
