about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-11 00:02:29 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-11 00:02:29 -0700
commit1c349ac7c571a97978e1cbbe726430ae9c741972 (patch)
treea555a01c640d6c589febf3961a771366126376c6 /tools
parentec73ed1230d75deb0f913a32617c9f1e0a5ca640 (diff)
downloadmu-1c349ac7c571a97978e1cbbe726430ae9c741972.tar.gz
6631
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/update_html b/tools/update_html
index 7efddfe7..c5589418 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -45,8 +45,8 @@ do
   process $f
 done
 
-ctags -x *.subx  > /tmp/tags
-for f in *.subx
+ctags -x [0-9]*.subx [0-9]*.mu  > /tmp/tags
+for f in *.subx *.mu
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
   process $f
@@ -56,7 +56,7 @@ for f in apps/*.subx
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
   ( cd apps
-    ctags -x ../*.subx `basename $f` > /tmp/tags
+    ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags
   )
   process $f
 done
@@ -65,7 +65,7 @@ for f in apps/*.mu
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
   ( cd apps
-    ctags -x ../*.subx `basename $f` > /tmp/tags
+    ctags -x ../[0-9]*.subx ../[0-9]*.mu `basename $f` > /tmp/tags
   )
   process $f
 done