fix CORS for local devbuild install

This commit is contained in:
lumapu 2022-11-09 12:12:44 +01:00
parent a12b5220c4
commit aa7a844ff8
3 changed files with 37 additions and 3 deletions

View file

@ -47,8 +47,7 @@ def buildManifest(path, infile, outfile):
jsonString = json.dumps(data, indent=2)
os.mkdir(path + "json/")
fp = open(path + "json/" + outfile, "w")
fp = open(path + "firmware/" + outfile, "w")
fp.write(jsonString)
fp.close()