bash/pip @ 97bf431de3e6

Add filemerge as a merge tool.
author Steve Losh <steve@stevelosh.com>
date Sun, 10 Jan 2010 18:01:10 -0500
parents 11c087d7ffe0
children (none)
#!/usr/bin/env bash

export PIP_VIRTUALENV_BASE=$WORKON_HOME

PIP_BIN="`which pip`"
alias pip-sys="$PIP_BIN"

pip() {
    if [ -n "$VIRTUAL_ENV" ]
    then $PIP_BIN -E "$VIRTUAL_ENV" "$@"
    else echo "Not currently in a venv -- use pip-sys to work system-wide."
    fi
}