Compare commits
2 Commits
e09f6ee74b
...
5a0fa8e50e
Author | SHA1 | Date | |
---|---|---|---|
5a0fa8e50e | |||
d1a0439169 |
13
build.py
Normal file
13
build.py
Normal 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()
|
@ -22,8 +22,8 @@ def main():
|
||||
# Create manifest
|
||||
manifest = {
|
||||
"name": NAME,
|
||||
"version": VERSION,
|
||||
"websiteUrl": WEBSITE,
|
||||
"version_number": VERSION,
|
||||
"website_url": WEBSITE,
|
||||
"description": DESCRIPTION,
|
||||
"dependencies": deps
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "YooplePack",
|
||||
"version": "1.0.0",
|
||||
"websiteUrl": "https://git.shoebottom.ca/IsaacShoebottom/YooplePack",
|
||||
"version_number": "1.0.0",
|
||||
"website_url": "https://git.shoebottom.ca/IsaacShoebottom/YooplePack",
|
||||
"description": "Modpack for the Yoople server",
|
||||
"dependencies": [
|
||||
"BepInEx-BepInExPack-5.4.2100",
|
||||
|
Loading…
Reference in New Issue
Block a user