From 81190be7bad6f3632a0f03f2b7a1f73f3395dd51 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 30 Aug 2015 22:33:59 -0700 Subject: [PATCH] Deprecate scripts/update --- scripts/update | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/update b/scripts/update index afeacbb1235..be5e8fc01bf 100755 --- a/scripts/update +++ b/scripts/update @@ -1,6 +1,6 @@ -# If current pwd is scripts, go 1 up. -if [ ${PWD##*/} == "scripts" ]; then - cd .. -fi - -git pull +echo "The update script has been deprecated since Home Assistant v0.7" +echo +echo "Home Assistant is now distributed via PyPi and can be installed and" +echo "upgraded by running: pip3 install --upgrade homeassistant" +echo +echo "If you are developing a new feature for Home Assistant, run: git pull"