From 6c106a87f16d506dc12efb1bb4ec705b760e1f18 Mon Sep 17 00:00:00 2001 From: sander Date: Thu, 15 Oct 2015 15:02:09 +0200 Subject: [PATCH] had to change to let this work on windows. --- script/bootstrap_server | 4 ++-- script/release | 2 +- script/server | 2 +- script/setup | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/script/bootstrap_server b/script/bootstrap_server index 8d71e01fa78..91a6a36027c 100755 --- a/script/bootstrap_server +++ b/script/bootstrap_server @@ -4,7 +4,7 @@ echo "Update the submodule to latest version..." git submodule update echo "Installing dependencies..." -python3 -m pip install --upgrade -r requirements_all.txt +python -m pip install --upgrade -r requirements_all.txt echo "Installing development dependencies.." -python3 -m pip install --upgrade flake8 pylint coveralls pytest pytest-cov +python -m pip install --upgrade flake8 pylint coveralls pytest pytest-cov diff --git a/script/release b/script/release index 40d906b17bf..31d298ddf8b 100755 --- a/script/release +++ b/script/release @@ -18,4 +18,4 @@ then exit 1 fi -python3 setup.py sdist bdist_wheel upload +python setup.py sdist bdist_wheel upload diff --git a/script/server b/script/server index 0904bfd728e..e0949b2d098 100755 --- a/script/server +++ b/script/server @@ -5,4 +5,4 @@ cd "$(dirname "$0")/.." -python3 -m homeassistant -c config +python -m homeassistant -c config diff --git a/script/setup b/script/setup index 6d3a774dd54..614cadd9b98 100755 --- a/script/setup +++ b/script/setup @@ -2,4 +2,4 @@ cd "$(dirname "$0")/.." git submodule init script/bootstrap -python3 setup.py develop +python setup.py develop