1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-28 12:56:54 +03:00

Actually write data.

This commit is contained in:
Samuel Dionne-Riel 2018-06-10 12:49:11 -04:00
parent 246de0741b
commit 6fe9d78c52

View File

@ -48,5 +48,6 @@ Dir.chdir("#{WORKDIR}/pmbootstrap-master") do
end
end
File.open("postmarketOS-devices.json", "w")
JSON.pretty_generate($devices)
File.open("postmarketOS-devices.json", "w") do |f|
f.write(JSON.pretty_generate($devices))
end