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 ; +)