From b3e09715df26b61eb6c0ca540930c22389b72c1a Mon Sep 17 00:00:00 2001 From: Evan do Carmo <34245571+carmo-evan@users.noreply.github.com> Date: Wed, 15 May 2019 00:59:28 -0400 Subject: [PATCH] escaping file name to allow for special chars 10796 (#10824) --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index c38f131e17..81d5124372 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -20,7 +20,7 @@ EXIT_STATUS=$? cat output | $GOPATH/bin/go-junit-report > report.xml rm output -find . -name 'cprofile*.out' -exec sh -c 'tail -n +2 {} >> cover.out ; rm "{}"' \; +find . -name 'cprofile*.out' -exec sh -c 'tail -n +2 "{}" >> cover.out ; rm "{}"' \; rm -f config/*.crt rm -f config/*.key