This commit is contained in:
Mikayla Fischler
2024-06-30 12:33:52 -04:00
parent c93cd4d0bd
commit 375e969161
5 changed files with 7 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ import sys
path_prefix = "./_minified/"
# get git build info
build = subprocess.check_output(["git", "describe", "--tags"]).strip().decode("utf-8")
build = subprocess.check_output(["git", "describe", "--tags"]).strip().decode('UTF-8')
# list files in a directory
def list_files(path):
@@ -110,7 +110,7 @@ manifest = {
"coordinator" : list_files("./coordinator"),
"pocket" : list_files("./pocket"),
},
"depends" : [ "system", "scada-common", "graphics", "lockbox" ],
"depends" : [ "system", "scada-common", "graphics", "lockbox" ]
}
# write the application installation items as Lua tables