summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/gexec/build.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-10-02 06:34:50 -0700
committerGitHub <noreply@github.com>2019-10-02 06:34:50 -0700
commit257a985f5a7cff8f01891529ea89b0ea2800d61f (patch)
treea92ef593aec15889a3f2943f6ca359b361832c9b /vendor/github.com/onsi/gomega/gexec/build.go
parent32a2ce8fc0eb590140cad81cf0ca9adf2daa5651 (diff)
parent6c72b5c5926fdaed67936f0b1c6f948e3bf5c441 (diff)
downloadpodman-257a985f5a7cff8f01891529ea89b0ea2800d61f.tar.gz
podman-257a985f5a7cff8f01891529ea89b0ea2800d61f.tar.bz2
podman-257a985f5a7cff8f01891529ea89b0ea2800d61f.zip
Merge pull request #4150 from containers/dependabot/go_modules/github.com/onsi/gomega-1.7.0
Bump github.com/onsi/gomega from 1.5.0 to 1.7.0
Diffstat (limited to 'vendor/github.com/onsi/gomega/gexec/build.go')
-rw-r--r--vendor/github.com/onsi/gomega/gexec/build.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/vendor/github.com/onsi/gomega/gexec/build.go b/vendor/github.com/onsi/gomega/gexec/build.go
index 869c1ead8..741d845f4 100644
--- a/vendor/github.com/onsi/gomega/gexec/build.go
+++ b/vendor/github.com/onsi/gomega/gexec/build.go
@@ -1,3 +1,5 @@
+// untested sections: 5
+
package gexec
import (
@@ -66,7 +68,7 @@ func doBuild(gopath, packagePath string, env []string, args ...string) (compiled
executable := filepath.Join(tmpDir, path.Base(packagePath))
if runtime.GOOS == "windows" {
- executable = executable + ".exe"
+ executable += ".exe"
}
cmdArgs := append([]string{"build"}, args...)