mirror of
https://github.com/esphome/esphome.git
synced 2024-11-12 10:16:02 +01:00
14 lines
221 B
Bash
Executable File
14 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 "$@"
|