entrypoint.sh: Don't require output filename to be escaped

Note that the input filenames still have to be escaped
(to support the use of "-" options on the command line).

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2021-06-27 16:32:16 -04:00
parent 8951154ac9
commit 18b559b69d
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -l
# $1 arguments
# $1 arguments. BEWARE: Some filenames may need to be escaped.
# $2 output filename
flawfinder $1 > $2
flawfinder $1 > "$2"
echo "Executed with success."