Skip to content

Commit

Permalink
Set unsetEnv default to true to match previous behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
percivalalb committed May 4, 2024
1 parent cbfc7a9 commit 220c27d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion activation/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ func UseMethod(m Method) option {
}

func Options(opts ...option) *options {
o := &options{}
o := &options{
unsetEnv: true,
}

for _, opt := range opts {
opt(o)
Expand Down

0 comments on commit 220c27d

Please sign in to comment.