commit 966fb3db5f9dd1218d409461582e52e811d7f0f6 (patch)
parent 42436de354d0bddede1546e36760837c5c439aa7
Author: Alex Karle <alex@alexkarle.com>
Date: Mon, 28 Oct 2024 21:53:37 -0400
bin: Add venvme python venv script
Small but mighty; its no fun trying to keep track of which
terminals have the right environment!
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/bin/venvme b/bin/venvme
@@ -0,0 +1,5 @@
+#!/bin/sh
+# venvme - run the rest of the command in the venv
+. .venv/bin/activate
+exec "$@"
+