#186 fixed manifest size in install_manifest.json, fixed unit display not connected prompt, added message about bad cooling config

This commit is contained in:
Mikayla Fischler
2023-03-02 22:29:50 -05:00
parent 58cf383c91
commit 11115633cf
4 changed files with 15 additions and 7 deletions

View File

@@ -98,7 +98,9 @@ f = open("install_manifest.json", "w")
json.dump(make_manifest("-----"), f)
f.close()
manifest_size = os.path.getsize("install_manifest.json")
# calculate file size then regenerate with embedded size
f = open("install_manifest.json", "w")
json.dump(make_manifest(os.path.getsize("install_manifest.json")), f)
json.dump(make_manifest(manifest_size), f)
f.close()