diff options
author | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 07:16:01 -0500 |
---|---|---|
committer | Dylan Jones <dylanjones2011@gmail.com> | 2020-12-13 07:16:01 -0500 |
commit | 05058b2291a8418c0f5856d0459bf71072fa03ce (patch) | |
tree | 29eea0f0dc88260c430d103397fe07946bb5ac84 /modpackman.py | |
parent | 3972ec1dc20c74de15d694282df35115e37e670d (diff) | |
download | modpackman-05058b2291a8418c0f5856d0459bf71072fa03ce.tar.gz modpackman-05058b2291a8418c0f5856d0459bf71072fa03ce.zip |
Config installation hotfix
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 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!") |