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
|
# Create manifest
|
||||||
manifest = {
|
manifest = {
|
||||||
"name": NAME,
|
"name": NAME,
|
||||||
"version": VERSION,
|
"version_number": VERSION,
|
||||||
"websiteUrl": WEBSITE,
|
"website_url": WEBSITE,
|
||||||
"description": DESCRIPTION,
|
"description": DESCRIPTION,
|
||||||
"dependencies": deps
|
"dependencies": deps
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "YooplePack",
|
"name": "YooplePack",
|
||||||
"version": "1.0.0",
|
"version_number": "1.0.0",
|
||||||
"websiteUrl": "https://git.shoebottom.ca/IsaacShoebottom/YooplePack",
|
"website_url": "https://git.shoebottom.ca/IsaacShoebottom/YooplePack",
|
||||||
"description": "Modpack for the Yoople server",
|
"description": "Modpack for the Yoople server",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"BepInEx-BepInExPack-5.4.2100",
|
"BepInEx-BepInExPack-5.4.2100",
|
||||||
|
Loading…
Reference in New Issue
Block a user