17 lines
312 B
Bash
Raw Normal View History

2017-02-03 01:34:40 +00:00
## These scripts are run from /home/pi
2016-10-11 19:06:21 +00:00
#!/bin/bash
2016-10-11 19:06:21 +00:00
cd /home/hass/.homeassistant
source /srv/hass/hass_venv/bin/activate
hass --script check_config
2016-10-11 19:06:21 +00:00
git add .
git status
2016-10-14 14:58:33 +00:00
echo -n "Enter the Description for the Change: " [Minor Update]
2016-10-11 19:06:21 +00:00
read CHANGE_MSG
git commit -m "${CHANGE_MSG}"
git push origin master
exit