diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-07-11 00:02:29 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-07-11 00:02:29 -0700 |
commit | 1c349ac7c571a97978e1cbbe726430ae9c741972 (patch) | |
tree | a555a01c640d6c589febf3961a771366126376c6 /tools/update_html | |
parent | ec73ed1230d75deb0f913a32617c9f1e0a5ca640 (diff) | |
download | mu-1c349ac7c571a97978e1cbbe726430ae9c741972.tar.gz |
6631
Diffstat (limited to 'tools/update_html')
-rwxr-xr-x | tools/update_html | 8 |
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 |