Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 13 lines 551 B view raw
1diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py 2index bdc7fcbd2..2114caf37 100755 3--- a/macx/scripts/osxdist.py 4+++ b/macx/scripts/osxdist.py 5@@ -151,7 +151,7 @@ class AppBundle(object): 6 dst = os.path.join(self.bundle, 'Contents', 'Plugins') 7 if not os.path.exists(dst): 8 os.makedirs(dst) 9- for plugin in glob.glob(os.path.join(options.binary_dir, 'plugins') + '/*.dylib'): 10+ for plugin in glob.glob(os.path.join(options.binary_dir, 'lib/mumble/plugins') + '/*.dylib'): 11 shutil.copy(plugin, dst) 12 13 def update_plist(self):