Skip to content

Commit

Permalink
fix: [CI-14093]: use URLEncoding instead of RawURLEncoding for windows (
Browse files Browse the repository at this point in the history
  • Loading branch information
devkimittal authored Sep 2, 2024
1 parent 14e6ca1 commit 4801f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/github/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func diffEnv(before, after string) map[string]string {

encoding := base64.StdEncoding
if runtime.GOOS == "windows" {
encoding = base64.RawURLEncoding
encoding = base64.URLEncoding
}

// Base64 decode env values
Expand Down

0 comments on commit 4801f2a

Please sign in to comment.