tumble/bin/activate

13 lines
264 B
Plaintext
Raw Normal View History

2013-03-05 23:25:53 +00:00
#!/bin/bash
# /bin comes before /node_modules/.bin because sometimes I want to
# override the behaviors provided.
PROJECT_ROOT=`pwd`
PATH="$PROJECT_ROOT/bin:$PROJECT_ROOT/node_modules/.bin:$PATH"
export PATH
PS1="(`basename \"$PROJECT_ROOT\"`)$PS1"
export PS1