You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
283 B

#!/usr/bin/zsh
# This hook is run after every virtualenv is activated.
proj_name=$(echo $VIRTUAL_ENV|awk -F'/' '{print $NF}')
locs=("src" "underdog")
for loc in "${locs[@]}";
do
if [ -d ~/$loc/$proj_name ]
then
cd ~/$loc/$proj_name
break
fi
done;
rehash