Skip to content

Commit

Permalink
Merge pull request #673 from Artturin/compat-wtih-busybox
Browse files Browse the repository at this point in the history
[stdlib] Fix compatibility with busybox utils
  • Loading branch information
ilyash-b authored Jul 12, 2024
2 parents f87bca6 + 815a161 commit 57d906e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stdlib.ngs
Original file line number Diff line number Diff line change
Expand Up @@ -8539,7 +8539,7 @@ section "base64" {
F decode_base64(s:Str) {
t = (4 - len(s) % 4) % 4
fill = "=" * t
`echo "$s$fill" | base64 --decode 2>${true}`
`echo "$s$fill" | base64 -d 2>${true}`
}
}

Expand Down

0 comments on commit 57d906e

Please sign in to comment.