Skip to content

Commit

Permalink
Fix OST being copied to the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
janhohenheim committed Sep 29, 2021
1 parent 16e8a1a commit 5f8ea58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_majoras_mask_3d/remastered_ost.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ def download_remastered_ost(url):
archive.extractall(temp_directory)
remastered_ost_directory = get_only_subdirectory_path(temp_directory)
source_directory = os.path.join(remastered_ost_directory, "romfs")
target_directory = get_citra_mods_directory()
target_directory = os.path.join(get_citra_mods_directory(), "romfs")
copytree(source_directory, target_directory, dirs_exist_ok=True)

0 comments on commit 5f8ea58

Please sign in to comment.