Skip to content

Commit

Permalink
🐛 get value of incognito for shell (instead of always true) (#2019)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjeffrey authored Oct 2, 2023
1 parent 57eca09 commit 4a49670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cnquery/cmd/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func ParseShellConfig(cmd *cobra.Command, cliRes *plugin.ParseCLIRes) *ShellConf
// AssetMrn: not necessary right now, especially since incognito
SpaceMrn: conf.GetParentMrn(),
ApiEndpoint: conf.UpstreamApiEndpoint(),
Incognito: true,
Incognito: viper.GetBool("incognito"),
Creds: conf.GetServiceCredential(),
}
}
Expand Down

0 comments on commit 4a49670

Please sign in to comment.