Added copying of MacOS plugins to Synergy bundle #4696

This commit is contained in:
Adam Potolsky 2015-06-08 16:50:50 -07:00
parent ed37eeca51
commit 82f822b51a
1 changed files with 4 additions and 0 deletions

View File

@ -739,6 +739,10 @@ class InternalCommands:
shutil.copy(targetDir + "/synergys", bundleBinDir)
shutil.copy(targetDir + "/syntool", bundleBinDir)
# Copy all generated plugins to the package
bundlePluginDir = bundleBinDir + "/plugins"
shutil.copytree(targetDir + "/plugins", bundlePluginDir)
self.loadConfig()
if not self.macIdentity:
raise Exception("run config with --mac-identity")