Fixed issue: setuptools keeps complaining about python2 (#178)

Co-authored-by: Duy Khuong <duykham@gmail.com>
This commit is contained in:
Sam Duy 2020-05-22 06:49:33 +00:00 committed by GitHub
parent 7920878fbe
commit e0b1ab5186
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1 +0,0 @@
ctf-tools-pip

9
bin/ctf-tools-pip3 Executable file
View file

@ -0,0 +1,9 @@
#!/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 "$@"