summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd
diff options
context:
space:
mode:
authorDean Deng <deandeng@google.com>2021-01-13 15:10:03 -0800
committergVisor bot <gvisor-bot@google.com>2021-01-13 15:15:20 -0800
commit1efe0ebc5973ec8a06b881c087dae2183898504b (patch)
tree6587b91164883c87324abe602b438f3e3ace19cf /runsc/cmd
parentf34aaf7ef17aa10c7ba1923d0694347e47634192 (diff)
Switch uses of os.Getenv that check for empty string to os.LookupEnv.
Whether the variable was found is already returned by syscall.Getenv. os.Getenv drops this value while os.Lookupenv passes it along. PiperOrigin-RevId: 351674032
Diffstat (limited to 'runsc/cmd')
-rw-r--r--runsc/cmd/gofer_test.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/runsc/cmd/gofer_test.go b/runsc/cmd/gofer_test.go
index cbea7f127..fea62a4f4 100644
--- a/runsc/cmd/gofer_test.go
+++ b/runsc/cmd/gofer_test.go
@@ -24,11 +24,10 @@ import (
)
func tmpDir() string {
- dir := os.Getenv("TEST_TMPDIR")
- if dir == "" {
- dir = "/tmp"
+ if dir, ok := os.LookupEnv("TEST_TMPDIR"); ok {
+ return dir
}
- return dir
+ return "/tmp"
}
type dir struct {