1eba155bf847eb579cea81722da594fe1f786f48
[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 if [ -n "$VIRTUAL_ENV" ]; then
7   find ${VIRTUAL_ENV}/lib -name '*.py' |xargs etags -a -o ${ROOT}/TAGS
8 else
9     echo "No Virtual env enabled, will not add it to TAGS"
10 fi