From 834ce5269dc98aec71a5df992617778020370efd Mon Sep 17 00:00:00 2001 From: Jon Maddox Date: Tue, 15 Sep 2015 02:30:13 -0400 Subject: [PATCH] we don't actually have to do this --- homeassistant/__main__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/homeassistant/__main__.py b/homeassistant/__main__.py index 1736dee9176..d1b0e574d2d 100644 --- a/homeassistant/__main__.py +++ b/homeassistant/__main__.py @@ -162,14 +162,12 @@ def write_pid(pid_file): def install_osx(): - app_path = os.popen('pwd').read().strip() hass_path = os.popen('which hass').read().strip() user = os.popen('whoami').read().strip() plist = codecs.open('scripts/org.homeassistant.plist', 'r', 'utf-8') plist = plist.read() - plist = plist.replace("$APP_PATH$", app_path) plist = plist.replace("$HASS_PATH$", hass_path) plist = plist.replace("$USER$", user)