From 966fb3db5f9dd1218d409461582e52e811d7f0f6 Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Mon, 28 Oct 2024 21:53:37 -0400 Subject: [PATCH] bin: Add venvme python venv script Small but mighty; its no fun trying to keep track of which terminals have the right environment! --- bin/venvme | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 bin/venvme diff --git a/bin/venvme b/bin/venvme new file mode 100755 index 0000000..45e0754 --- /dev/null +++ b/bin/venvme @@ -0,0 +1,5 @@ +#!/bin/sh +# venvme - run the rest of the command in the venv +. .venv/bin/activate +exec "$@" + -- libgit2 1.1.1