mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 06:58:11 +01:00
Mark repo as safe directory to git config (#5102)
This commit is contained in:
parent
ac81fae855
commit
899aa31df3
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,11 @@ if [ ! -n "$DEVCONTAINER" ] && [ ! -n "$VIRTUAL_ENV" ] && [ ! "$ESPHOME_NO_VENV"
|
||||||
source venv/bin/activate
|
source venv/bin/activate
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Avoid unsafe git error when running inside devcontainer
|
||||||
|
if [ -n "$DEVCONTAINER" ];then
|
||||||
|
git config --global --add safe.directory "$PWD"
|
||||||
|
fi
|
||||||
|
|
||||||
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
|
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
|
||||||
pip3 install setuptools wheel
|
pip3 install setuptools wheel
|
||||||
pip3 install --no-use-pep517 -e .
|
pip3 install --no-use-pep517 -e .
|
||||||
|
|
Loading…
Reference in a new issue