Skip to content

Commit

Permalink
Merge pull request #123 from Kenzzer/s2_mm_plugin
Browse files Browse the repository at this point in the history
fixup packagescript for s2 mm plugin sample
  • Loading branch information
psychonic committed Sep 29, 2023
2 parents 57043e3 + c10904d commit 45d906a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/s2_sample_mm/PackageScript
Expand Up @@ -13,10 +13,10 @@ for cxx in MMSPlugin.all_targets:
bin64_folder_path = os.path.join('addons', MMSPlugin.plugin_name, 'bin', 'win64')
bin64_folder = builder.AddFolder(bin64_folder_path)
elif cxx.target.platform == 'linux':
bin64_folder_path = os.path.join('addons', MMSPlugin.plugin_name, 'bin', 'win64')
bin64_folder_path = os.path.join('addons', MMSPlugin.plugin_name, 'bin', 'linuxsteamrt64')
bin64_folder = builder.AddFolder(bin64_folder_path)
elif cxx.target.platform == 'mac':
bin64_folder_path = os.path.join('addons', MMSPlugin.plugin_name, 'bin', 'win64')
bin64_folder_path = os.path.join('addons', MMSPlugin.plugin_name, 'bin', 'osx64')
bin64_folder = builder.AddFolder(bin64_folder_path)

pdb_list = []
Expand Down

0 comments on commit 45d906a

Please sign in to comment.