From ce268f7e02d3c4cfb11f700d2ae179abc151f8ae Mon Sep 17 00:00:00 2001
From: Marcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Date: Tue, 11 Oct 2011 12:00:06 +0200
Subject: [PATCH] make-tags: scan librarian files laying on the same level as
 wolnelektury

---
 scripts/make-tags | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/make-tags b/scripts/make-tags
index 1eba155bf..776d9d97c 100755
--- a/scripts/make-tags
+++ b/scripts/make-tags
@@ -3,6 +3,7 @@
 ROOT=$(git rev-parse --show-toplevel)
 
 find $ROOT -name '*.py' | xargs etags -o ${ROOT}/TAGS
+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
-- 
2.20.1