blob: 5461962113fa871dc4ee38d23516935275f7ce14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## Git-Based Modpack Manager
---
Script to update modpacks automatically
#### To Use
First, install [Python 3](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads) and add them to your `$PATH`.
Then, run `pip install requests` to install the Python Requests module (required to run the script).
Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install`
#### Maintenance:
To check `downloads.txt` modlist for updates against `mods.txt` modlist, run `python update.py check_updates`.
To automatically populate `downloads.txt` with the most recent versions of mods listed in `mods.txt` run `python update.py apply_updates`.
Finally, to actually install your mods from the list in `downloads.txt`, run `python update.py install`
|