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 bfe5eea commit b7be16eCopy full SHA for b7be16e
internal/impl/envvars.go
@@ -99,7 +99,11 @@ func isApproved(key string) bool {
99
}
100
approved := true
101
for _, ak := range troublingEnvKeys {
102
- if key == ak {
+ // DEVBOX_OG_PATH_<hash> being set causes devbox global shellenv or overwrite
103
+ // the PATH after vscode opens and resets it to global shellenv
104
+ // This causes vscode terminal to not be able to find devbox packages
105
+ // after reopen in devbox environment action is called
106
+ if key == ak || strings.HasPrefix(key, "DEVBOX_OG_PATH") {
107
approved = false
108
109
0 commit comments