Change local library path from {config_dir}/lib to {config_dir}/deps. (#1799)

Just on the off chance that someone who happens to run as root and also
doesn't correctly parse "just remove config /lib and restart".
This commit is contained in:
Jan Harkes 2016-04-11 23:07:50 -04:00 committed by Paulus Schoutsen
parent 4857117dda
commit 241735c924
4 changed files with 12 additions and 6 deletions

View file

@ -58,7 +58,7 @@ class TestBootstrap:
"""Test removal of library on upgrade."""
with tempfile.TemporaryDirectory() as config_dir:
version_path = os.path.join(config_dir, '.HA_VERSION')
lib_dir = os.path.join(config_dir, 'lib')
lib_dir = os.path.join(config_dir, 'deps')
check_file = os.path.join(lib_dir, 'check')
with open(version_path, 'wt') as outp:
@ -79,7 +79,7 @@ class TestBootstrap:
"""Test removal of library with no upgrade."""
with tempfile.TemporaryDirectory() as config_dir:
version_path = os.path.join(config_dir, '.HA_VERSION')
lib_dir = os.path.join(config_dir, 'lib')
lib_dir = os.path.join(config_dir, 'deps')
check_file = os.path.join(lib_dir, 'check')
with open(version_path, 'wt') as outp: