diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-01 11:59:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 11:59:46 -0400 |
commit | d4394ea3688ad1942b8457f6df869f7c440d49e7 (patch) | |
tree | 29d406009b816cdae19268ead6fd40006fa34e2a /test/utils/utils.go | |
parent | 23e57575b0a402d7f7de9d20571776d0512fd489 (diff) | |
parent | f8c2df87cbb48e2e57710d8bc7d024b615235dbf (diff) | |
download | podman-d4394ea3688ad1942b8457f6df869f7c440d49e7.tar.gz podman-d4394ea3688ad1942b8457f6df869f7c440d49e7.tar.bz2 podman-d4394ea3688ad1942b8457f6df869f7c440d49e7.zip |
Merge pull request #13665 from jwhonce/issues/13535
Add build test for .containerignore tar file
Diffstat (limited to 'test/utils/utils.go')
-rw-r--r-- | test/utils/utils.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/utils/utils.go b/test/utils/utils.go index a6295cd19..57f002130 100644 --- a/test/utils/utils.go +++ b/test/utils/utils.go @@ -100,9 +100,7 @@ func (p *PodmanTest) PodmanAsUserBase(args []string, uid, gid uint32, cwd string if p.NetworkBackend == Netavark { runCmd = append(runCmd, []string{"--network-backend", "netavark"}...) } - if p.RemoteTest { - podmanOptions = append([]string{"--remote", "--url", p.RemoteSocket}, podmanOptions...) - } + if env == nil { fmt.Printf("Running: %s %s\n", strings.Join(runCmd, " "), strings.Join(podmanOptions, " ")) } else { |