From 7cd8f030ec7dabe9b2c5928e43fdae18bdad4126 Mon Sep 17 00:00:00 2001 From: Brian Phan Date: Wed, 30 Nov 2022 07:23:13 -0800 Subject: [PATCH] Use 1 instead of true --- internal/app/wwctl/container/shell/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/wwctl/container/shell/main.go b/internal/app/wwctl/container/shell/main.go index 193e5ab9..89fa0058 100644 --- a/internal/app/wwctl/container/shell/main.go +++ b/internal/app/wwctl/container/shell/main.go @@ -40,7 +40,7 @@ func CobraRunE(cmd *cobra.Command, args []string) error { c.Stdout = os.Stdout c.Stderr = os.Stderr - os.Setenv("WW_CONTAINER_SHELL", "true") + os.Setenv("WW_CONTAINER_SHELL", "1") if err := c.Run(); err != nil { fmt.Println(err)