Skip to content

Commit

Permalink
Fixed submodule issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ido committed Apr 23, 2011
1 parent 2843626 commit f789fc1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions source_me.sh
@@ -1,10 +1,12 @@
#!/bin/sh

if [ -f env/bin/activate ]; then
source env/bin/activate
else
if [ ! -f env/bin/activate ]; then
if [ ! -f virtualenv/virtualenv.py ]; then
git submodule update --init
fi
python virtualenv/virtualenv.py env
source env/bin/activate
fi

source env/bin/activate

pip install nltk

0 comments on commit f789fc1

Please sign in to comment.