mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
19 lines
No EOL
568 B
CMake
19 lines
No EOL
568 B
CMake
#!/bin/sh
|
|
|
|
osascript << EOF
|
|
tell application "Finder"
|
|
activate
|
|
select the last Finder window
|
|
reveal POSIX file "/Applications/@APPLICATION_EXECUTABLE@.app"
|
|
end tell
|
|
EOF
|
|
|
|
# Always enable the new 10.10 finder plugin if available
|
|
if [ -x "$(command -v pluginkit)" ]; then
|
|
# add it to DB. This happens automatically too but we try to push it a bit harder for issue #3463
|
|
pluginkit -a "/Applications/@APPLICATION_EXECUTABLE@.app/Contents/PlugIns/FinderSyncExt.appex/"
|
|
# enable it
|
|
pluginkit -e use -i @APPLICATION_REV_DOMAIN@.FinderSyncExt
|
|
fi
|
|
|
|
exit 0 |