15 lines
270 B
Bash
Raw Normal View History

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