From d96cbfe0d355efb6c71a4349adfbba90220d7a86 Mon Sep 17 00:00:00 2001 From: Monard Vong Date: Mon, 16 Sep 2019 00:03:10 +0200 Subject: [PATCH] Fix formatting --- pkg/util/command_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/command_util.go b/pkg/util/command_util.go index 15ed41b18..68dfb6074 100644 --- a/pkg/util/command_util.go +++ b/pkg/util/command_util.go @@ -66,7 +66,7 @@ func ResolveEnvironmentReplacement(value string, envs []string, isFilepath bool) shlex := shell.NewLex(parser.DefaultEscapeToken) fp, err := shlex.ProcessWord(value, envs) // Check after replacement if value is a remote URL - if !isFilepath || IsSrcRemoteFileURL(fp) { + if !isFilepath || IsSrcRemoteFileURL(fp) { return fp, err } if err != nil {