dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 99e3ca1c9d5d5e18242c18fa55a3d285182bda06
parent 9b4001379f071d28b58e0de63ac33170d400e18e
Author: Alex Balgavy <EMAIL>
Date:   Sat,  7 Sep 2019 15:58:24 -0400

commonprofile: venvwrapper should exist

Former-commit-id: 3bcb263335b4ea5ad16b9f42d1bd2be21d69b695
Diffstat:
Mshell/commonprofile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shell/commonprofile b/shell/commonprofile @@ -66,7 +66,7 @@ PIP_REQUIRE_VIRTUALENV=true WORKON_HOME=$HOME/.virtualenvs VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh -source /usr/local/bin/virtualenvwrapper_lazy.sh +[ -f /usr/local/bin/virtualenvwrapper_lazy.py ] && source /usr/local/bin/virtualenvwrapper_lazy.sh # what to exclude for shellcheck SHELLCHECK_OPTS='--exclude=SC1090,SC1091,SC2009'