summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd/exec.go
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-02-10 13:56:17 -0800
committergVisor bot <gvisor-bot@google.com>2020-02-10 13:57:01 -0800
commit3e8b38d08bbe200a11909bc268e66e4ee1d27d79 (patch)
treeed72642483ccba12c26aad7501c97fb89ca8e08f /runsc/cmd/exec.go
parenta6f9361c2f7c5b46a200de1dc891a0ce059ad90e (diff)
Add flag package to limit visibility.
PiperOrigin-RevId: 294297004
Diffstat (limited to 'runsc/cmd/exec.go')
-rw-r--r--runsc/cmd/exec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/cmd/exec.go b/runsc/cmd/exec.go
index d1e99243b..d9a94903e 100644
--- a/runsc/cmd/exec.go
+++ b/runsc/cmd/exec.go
@@ -27,7 +27,6 @@ import (
"syscall"
"time"
- "flag"
"github.com/google/subcommands"
specs "github.com/opencontainers/runtime-spec/specs-go"
"gvisor.dev/gvisor/pkg/log"
@@ -37,6 +36,7 @@ import (
"gvisor.dev/gvisor/runsc/boot"
"gvisor.dev/gvisor/runsc/console"
"gvisor.dev/gvisor/runsc/container"
+ "gvisor.dev/gvisor/runsc/flag"
"gvisor.dev/gvisor/runsc/specutils"
)