mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
13 lines
221 B
Bash
Executable file
13 lines
221 B
Bash
Executable file
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
my_path=$(git rev-parse --show-toplevel)
|
|
|
|
for venv in venv .venv .; do
|
|
if [ -f "${my_path}/${venv}/bin/activate" ]; then
|
|
. "${my_path}/${venv}/bin/activate"
|
|
break
|
|
fi
|
|
done
|
|
|
|
exec "$@"
|