Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 1e69e70

Browse files
authored
Merge pull request #113 from docker/change_env_variable_values
Use value true for NO_UPDATE_NOTIFIER and SNYK_CFG_DISABLESUGGESTIONS…
2 parents 99ce224 + 1af4562 commit 1e69e70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/provider/snyk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func (s *snykProvider) Version() (string, error) {
177177

178178
func (s *snykProvider) newCommand(arg ...string) *exec.Cmd {
179179
cmd := exec.CommandContext(s.context, s.path, arg...)
180-
cmd.Env = append(os.Environ(), "NO_UPDATE_NOTIFIER=1", "SNYK_CFG_DISABLESUGGESTIONS=1")
180+
cmd.Env = append(os.Environ(), "NO_UPDATE_NOTIFIER=true", "SNYK_CFG_DISABLESUGGESTIONS=true")
181181
return cmd
182182
}
183183

0 commit comments

Comments
 (0)