X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/60b06883b6d5a336ef47c01103ec1ce25aafae69..98a11b1afa8d82d4843705f6ffff799b1eeaed50:/scripts/make-tags diff --git a/scripts/make-tags b/scripts/make-tags index 1eba155bf..c1fe3ffc6 100755 --- a/scripts/make-tags +++ b/scripts/make-tags @@ -3,8 +3,10 @@ ROOT=$(git rev-parse --show-toplevel) find $ROOT -name '*.py' | xargs etags -o ${ROOT}/TAGS +# librarian is a submodule now +#find $ROOT/../librarian -name '*.py' | xargs etags -a -o ${ROOT}/TAGS if [ -n "$VIRTUAL_ENV" ]; then find ${VIRTUAL_ENV}/lib -name '*.py' |xargs etags -a -o ${ROOT}/TAGS else echo "No Virtual env enabled, will not add it to TAGS" -fi \ No newline at end of file +fi