From e33cb3f849dc32e5c0f083ac5f1394dc792b32a1 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Fri, 23 Dec 2016 00:03:34 +0000 Subject: Initial commit. --- venvworkon.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 venvworkon.sh (limited to 'venvworkon.sh') diff --git a/venvworkon.sh b/venvworkon.sh new file mode 100755 index 0000000..1da01bd --- /dev/null +++ b/venvworkon.sh @@ -0,0 +1,30 @@ +workon() { + envroot="$HOME/.venv" + + if [ ! -e "$envroot" ] + then + mkdir -p "$envroot" + fi + + if [ "$#" -lt "1" ] + then + ls "$envroot" + return + fi + + envname=$1 + + envdir="$envroot/$envname" + + if [ ! -e "$envdir" ] + then + pyvenv "$envdir" + fi + + source "$envdir/bin/activate" + + if [ -e "$envdir/postload.sh" ] + then + source "$envdir/postload.sh" + fi +} -- cgit v1.2.3