Fix sed argument in test/fuzzer/run-fuzzer.sh

This commit is contained in:
vdimir 2021-08-30 14:25:08 +03:00
parent e3b2586a02
commit bc785bff25
No known key found for this signature in database
GPG Key ID: F57B3E10A21DBB31

View File

@ -76,7 +76,7 @@ function filter_exists_and_template
local path local path
for path in "$@"; do for path in "$@"; do
if [ -e "$path" ]; then if [ -e "$path" ]; then
echo "$path" | sed -n 's/\.sql\.j2$/.gen.sql/' echo "$path" | sed 's/\.sql\.j2$/.gen.sql/'
else else
echo "'$path' does not exists" >&2 echo "'$path' does not exists" >&2
fi fi