about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-02-14 16:48:02 -0800
committerKartik Agaram <vc@akkartik.com>2021-02-14 16:48:02 -0800
commit74ed21ab147a7ea6b6bcc37162c52405c80a3257 (patch)
tree38a14db6511c8cd91251e9a0a3518235e946a8d6 /tools
parent8cff1c04e38787a99b3382055542d967dca420df (diff)
downloadmu-74ed21ab147a7ea6b6bcc37162c52405c80a3257.tar.gz
7746
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/update_html b/tools/update_html
index e53bf459..e040dc89 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -74,7 +74,6 @@ done
 for f in apps/*/*.mu
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
-  echo $f
   ( cd `dirname $f`
     ctags -x ../../[0-9]*.subx ../../[0-9]*.mu *.mu > /tmp/tags
   )
@@ -111,8 +110,8 @@ done
 for f in baremetal/*/*.mu
 do
   test $# -gt 0  &&  test $1 != $f  &&  continue
-  ( cd baremetal
-    ctags -R -x [0-9]*.subx [0-9]*.mu $(basename $(dirname $f)) > /tmp/tags
+  ( cd `dirname $f`
+    ctags -x ../../[0-9]*.subx ../../[0-9]*.mu *.mu > /tmp/tags
   )
   process $f
 done