mirror of
https://github.com/mtan93/homebridge.git
synced 2026-03-08 05:31:55 +00:00
9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
echo "Updating from GitHub..."
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
git pull origin $BRANCH
|
|
|
|
npm update
|
|
|
|
script/restart
|