We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab3d0a1 commit c1f97a8Copy full SHA for c1f97a8
src/cmd/cli/command/globals.go
@@ -254,6 +254,10 @@ func loadStackFile(stackName string) error {
254
// Check for conflicts before loading
255
err := checkEnvConflicts(stackName)
256
if err != nil {
257
+ // For the default "beta" stack, make it optional if the file doesn't exist
258
+ if stackName == "beta" && os.IsNotExist(err) {
259
+ return nil
260
+ }
261
return err
262
}
263
0 commit comments