mirror of
https://github.com/mtan93/homebridge.git
synced 2026-03-08 05:31:55 +00:00
16 lines
391 B
Bash
Executable File
16 lines
391 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "Installing Homebridge..."
|
|
|
|
APP_PATH=`pwd`
|
|
USER_NAME=`whoami`
|
|
|
|
cp startup/org.homebridge.plist ~/Library/LaunchAgents/org.homebridge.plist
|
|
|
|
sed -i '' -e "s#%USER%#$USER_NAME#g" ~/Library/LaunchAgents/org.homebridge.plist
|
|
sed -i '' -e "s#%PATH%#$APP_PATH#g" ~/Library/LaunchAgents/org.homebridge.plist
|
|
|
|
launchctl load -w -F ~/Library/LaunchAgents/org.homebridge.plist
|