diff options
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 6e23792..55ebea6 100755 --- a/modpackman.py +++ b/modpackman.py @@ -30,7 +30,7 @@ if __name__ == "__main__": # run the command if args.command == "install": - util.install("version.txt", pack["whitelist"], pack['location']) + util.install("version.txt", pack["whitelist"], os.path.join(pack['location'], 'mods')) elif args.command == "apply_updates": util.apply_updates(mods, "version.txt", pack["game_version"]) elif args.command == "check_updates": |