Add build script for generating manifest and packaging

This commit is contained in:
Isaac Shoebottom 2024-01-19 21:12:12 -04:00
parent d1a0439169
commit 5a0fa8e50e

13
build.py Normal file
View File

@ -0,0 +1,13 @@
import subprocess
def main():
# run "python generate-manifest.py deps.txt"
subprocess.run(["python", "generate-manifest.py", "deps.txt"])
# run "package.py"
subprocess.run(["python", "package.py"])
if __name__ == "__main__":
main()