1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 20:55:20 +03:00
aports/testing/ngs/busybox-compat.patch
2021-07-27 22:33:52 +02:00

13 lines
275 B
Diff

Fix compatibility with busybox utils.
--- a/lib/stdlib.ngs
+++ b/lib/stdlib.ngs
@@ -7393,7 +7393,7 @@
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}`
}
}