From 27baae9cb3917d9a8e28ab831bd89e3f45ef84e3 Mon Sep 17 00:00:00 2001 From: Travis Swicegood Date: Wed, 2 Mar 2011 23:49:30 -0600 Subject: [PATCH] Add support for virtualenvwrapper if its present --- plugins/virtualenv.plugin.bash | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 plugins/virtualenv.plugin.bash diff --git a/plugins/virtualenv.plugin.bash b/plugins/virtualenv.plugin.bash new file mode 100644 index 0000000..a0e7b3f --- /dev/null +++ b/plugins/virtualenv.plugin.bash @@ -0,0 +1,5 @@ +#!/bin/bash + +# make sure virtualenvwrapper is enabled if availalbe +[[ `which virtualenvwrapper.sh` ]] && . virtualenvwrapper.sh + -- 2.17.1