From 18b559b69d4aee71f6849c8b06706a306dd687ef Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Sun, 27 Jun 2021 16:32:16 -0400 Subject: [PATCH] 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 --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1aaac26..b89e0ad 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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."