bump librarian version and do not fetch tags from librarian in virtualenv
[wolnelektury.git] / scripts / make-tags
1 #!/bin/bash
2
3 ROOT=$(git rev-parse --show-toplevel)
4
5 find $ROOT -name '*.py' | xargs etags -o ${ROOT}/TAGS
6 # librarian is a submodule now
7 #find $ROOT/../librarian -name '*.py' | xargs etags -a -o ${ROOT}/TAGS
8 if [ -n "$VIRTUAL_ENV" ]; then
9   find ${VIRTUAL_ENV}/lib -name '*.py' |xargs etags -a -o ${ROOT}/TAGS
10 else
11     echo "No Virtual env enabled, will not add it to TAGS"
12 fi