mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
e0b1ab5186
Co-authored-by: Duy Khuong <duykham@gmail.com>
9 lines
256 B
Bash
Executable file
9 lines
256 B
Bash
Executable file
#!/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 "$@"
|