From 1e3db3a09f1f5d81ec03e3c3d8ece40470e04114 Mon Sep 17 00:00:00 2001 From: tavo-wasd Date: Sat, 30 Mar 2024 22:01:14 -0600 Subject: [PATCH] cd dir --- bootstrap.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index e0f3fc6..a3acf15 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,7 +1,9 @@ #!/bin/sh -python -m venv ./ -. ./bin/activate -pip install discord -pip install PyNaCl -pip install fuzzywuzzy +(cd "$( dirname -- "$0" )" ; + python -m venv ./ ; + . ./bin/activate ; + pip install discord ; + pip install PyNaCl ; + pip install fuzzywuzzy ; +)