macOS installer postinstall fix manifest path

This commit is contained in:
hensm
2018-11-28 05:31:58 +00:00
parent 8482e888ed
commit f8f997db76
3 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
if [ "$2" != "/" ]
then
manifestPath=$2"/Library/Application Support/Mozilla/NativeMessagingHosts/fx_cast_bridge.json"
sed -i.bak 's,"path": "/Library,"path": "'$2'/Library,g' "$manifestPath"
rm "$manifestPath.bak"
fi
exit 0