#!/bin/sh

# $1 is the hook name

if [ -n "${WORKON_HOME}" ] && [ -r "${WORKON_HOME}/$1" ]; then
    . "${WORKON_HOME}/$1"
fi
