tags script
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 7 Nov 2012 10:30:24 +0000 (11:30 +0100)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 7 Nov 2012 10:30:24 +0000 (11:30 +0100)
scripts/make-tags [new file with mode: 0755]

diff --git a/scripts/make-tags b/scripts/make-tags
new file mode 100755 (executable)
index 0000000..0f2d26c
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+ROOT=$(git rev-parse --show-toplevel)
+
+find $ROOT -name '*.py' | xargs etags -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
+
+find $ROOT/redakcja/static/css -name '*.css' |xargs etags -a -o ${ROOT}/TAGS
+find $ROOT/redakcja/static/js -name '*.js' |xargs etags -a -o ${ROOT}/TAGS