mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 22:48:10 +01:00
update script/setup so it works fine on windows (#6087)
This commit is contained in:
parent
83baa24022
commit
e39099137d
1 changed files with 6 additions and 3 deletions
|
@ -4,10 +4,13 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
location="venv/bin/activate"
|
||||||
if [ ! -n "$DEVCONTAINER" ] && [ ! -n "$VIRTUAL_ENV" ] && [ ! "$ESPHOME_NO_VENV" ]; then
|
if [ ! -n "$DEVCONTAINER" ] && [ ! -n "$VIRTUAL_ENV" ] && [ ! "$ESPHOME_NO_VENV" ]; then
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
source venv/bin/activate
|
if [ -f venv/Scripts/activate ]; then
|
||||||
|
location="venv/Scripts/activate"
|
||||||
|
fi
|
||||||
|
source $location;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Avoid unsafe git error when running inside devcontainer
|
# Avoid unsafe git error when running inside devcontainer
|
||||||
|
@ -25,4 +28,4 @@ script/platformio_install_deps.py platformio.ini --libraries --tools --platforms
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo
|
echo
|
||||||
echo "Virtual environment created; source venv/bin/activate to use it"
|
echo "Virtual environment created. Run 'source $location' to use it."
|
||||||
|
|
Loading…
Reference in a new issue