From 82f822b51a6b078cf76f9c7c2c4e591a030138ec Mon Sep 17 00:00:00 2001 From: Adam Potolsky Date: Mon, 8 Jun 2015 16:50:50 -0700 Subject: [PATCH] Added copying of MacOS plugins to Synergy bundle #4696 --- ext/toolchain/commands1.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index 5ef00d2d..b85233dd 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -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")