diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-02 15:23:01 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-02 15:23:01 -0800 |
commit | c9bda4d13ea33873dd5bce1eef0434cb11763d19 (patch) | |
tree | 6a4488fc7c7dd3408687ecd03b94cac97a606f0a /tools/update_html | |
parent | 6f1581e77b8587da86a2fdaa461f83ab464447ce (diff) | |
download | mu-c9bda4d13ea33873dd5bce1eef0434cb11763d19.tar.gz |
5875
Diffstat (limited to 'tools/update_html')
-rwxr-xr-x | tools/update_html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/update_html b/tools/update_html index 478d5d6c..7efddfe7 100755 --- a/tools/update_html +++ b/tools/update_html @@ -45,23 +45,23 @@ do process $f done -for f in examples/*.subx +ctags -x *.subx > /tmp/tags +for f in *.subx do test $# -gt 0 && test $1 != $f && continue - ( cd examples - ctags -x `basename $f` > /tmp/tags - ) process $f done -ctags -x *.subx > /tmp/tags -for f in *.subx +for f in apps/*.subx do test $# -gt 0 && test $1 != $f && continue + ( cd apps + ctags -x ../*.subx `basename $f` > /tmp/tags + ) process $f done -for f in apps/*.subx +for f in apps/*.mu do test $# -gt 0 && test $1 != $f && continue ( cd apps |