diff options
-rwxr-xr-x | modpackman.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modpackman.py b/modpackman.py index a37730d..bf0ef11 100755 --- a/modpackman.py +++ b/modpackman.py @@ -69,7 +69,7 @@ def install(): if not os.path.exists(mc_config_folder): os.mkdir(mc_config_folder) for cfg in os.listdir('config'): - shutil.copyfile(cfg, os.path.join(mc_config_folder, cfg)) + shutil.copyfile(os.path.join('config', cfg), os.path.join(mc_config_folder, cfg)) print() print("Finished installing mods!") |