mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
10 lines
256 B
Text
10 lines
256 B
Text
|
#!/bin/bash
|
||
|
set -e -o pipefail
|
||
|
#set -x
|
||
|
|
||
|
# http://stackoverflow.com/questions/59895/can-a-bash-script-tell-which-directory-it-is-stored-in
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
source $DIR/ctf-tools-venv-activate
|
||
|
exec python3 -m pip "$@"
|