This commit is contained in:
2025-08-25 07:06:50 +02:00
parent e8d09164ff
commit 581fb0c0f0
15 changed files with 287 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
hpy() {
if [ ! -f ".venv/bin/activate" ]; then
echo "Error: .venv not found in current directory" >&2
return 1
fi
# Activate venv in a subshell so it doesnt pollute caller
(
source .venv/bin/activate
python "$@"
)
}