mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 00:59:59 +00:00
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/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
|