aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-10-30 14:36:02 -0700
committerGerald Combs <gerald@wireshark.org>2014-10-30 21:36:35 +0000
commit2e3147524e5661a11f7c88b5f8f58b4cd0055cfa (patch)
treebab3c8f41955f8c20ac4de46ee933c233fe78963 /packaging
parent7665ac5fab80d1cbd2297b4fe6fd9b411559a7ce (diff)
Add a missing backslash.
Change-Id: Iac79c885fe10805b61512ed2c02cd652f1c3fd7a Reviewed-on: https://code.wireshark.org/review/5010 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 8cd6db6fcc..d8f6975d0d 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -295,7 +295,7 @@ create_bundle() {
# Copy the plugins from the "make install" location for them
# to the plugin directory, removing the version number
- find "$binary_path/../lib/wireshark/plugins"
+ find "$binary_path/../lib/wireshark/plugins" \
-type f \
\( -name "*.so" -o -name "*.dylib" \) \
-exec cp -fv "{}" "$pkgplugin/" \;