From e80120ebf4a8f29131b6bbf2b298b4e69ea39735 Mon Sep 17 00:00:00 2001 From: Johanan Liebermann Date: Wed, 23 May 2018 22:55:11 +0200 Subject: [PATCH] Mark exec.Command with nosec --- bootstrap/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/utils.go b/bootstrap/utils.go index 232756b0a..4a405bbf9 100644 --- a/bootstrap/utils.go +++ b/bootstrap/utils.go @@ -137,7 +137,7 @@ func downloadAndUnzip(url string, path string, target string) error { // Executes a command, waits for it to finish and returns any errors. func executeCmd(cmd string, args []string) error { - command := exec.Command(cmd, args...) + command := exec.Command(cmd, args...) // #nosec return command.Run() }