From 1bfde0f9356ff573b182d0c2babff7710350a1e3 Mon Sep 17 00:00:00 2001 From: Olivier Thomann Date: Mon, 2 Mar 2020 12:13:40 -0500 Subject: [PATCH] Fix for issue #2131 --- cmd/entrypoint/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/entrypoint/main.go b/cmd/entrypoint/main.go index ad13aaee3ff..e03c33a2e31 100644 --- a/cmd/entrypoint/main.go +++ b/cmd/entrypoint/main.go @@ -57,7 +57,7 @@ func main() { // strings.Split(..) with an empty string returns an array that contains one element, an empty string. // The result folder should only be created if there are actual results to defined for the entrypoint. if len(e.Results) >= 1 && e.Results[0] != "" { - if err := os.MkdirAll(pipeline.DefaultResultPath, 0755); err != nil { + if err := os.MkdirAll(pipeline.DefaultResultPath, 0777); err != nil { log.Fatalf("Error creating the results directory: %v", err) } }