mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-10 00:45:47 -07:00
Fixes an issue on macOS Mojave that was patched in fa1c281e79.
The list of changes can be found under
build/premake/premake5/CHANGES.txt.
This was SVN commit r22021.
7 lines
197 B
Lua
7 lines
197 B
Lua
local input = source.chain(
|
|
source.file(io.open("input.bin", "rb")),
|
|
encode("base64"))
|
|
local output = sink.chain(
|
|
wrap(76),
|
|
sink.file(io.open("output.b64", "w")))
|
|
pump.all(input, output)
|