diff options
author | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 17:06:02 -0500 |
---|---|---|
committer | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 17:06:02 -0500 |
commit | 3aba396782f4d4abcafef2bfe7c2514409f4c9b8 (patch) | |
tree | 880930e6dde4c122b0cf40bb42cd25f1c5ff9dd2 /modpackman.py | |
parent | a18a7161690d6c9b8560375aeea2ba2f66277b40 (diff) | |
download | modpackman-3aba396782f4d4abcafef2bfe7c2514409f4c9b8.tar.gz modpackman-3aba396782f4d4abcafef2bfe7c2514409f4c9b8.zip |
Actually really add chisel and bits this time
Diffstat (limited to 'modpackman.py')
-rwxr-xr-x | modpackman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modpackman.py b/modpackman.py index bf0ef11..f578db4 100755 --- a/modpackman.py +++ b/modpackman.py @@ -93,7 +93,7 @@ def apply_updates(): pack_lock['global']['pack_version'] = str(int(pack_lock['global']['pack_version']) + 1) # This is only needed for the self-update feature pack_lock['global']['config_files'] = ','.join(os.listdir('config')) - pack_lock['mods'] = {name: f'{checksum},{url}' for name, checksum, url in zip(config['mods'].keys(), checksums, mod_urls)} + pack_lock['mod_versions'] = {name: f'{checksum},{url}' for name, checksum, url in zip(config['mods'].keys(), checksums, mod_urls)} with open('pack-lock.ini', 'w') as f: pack_lock.write(f) |