commit 70fdee743845096e7070f378c72ef5c66193174f
parent 6f36c0c29bcc50d1c7d8406430da809d956f52f6
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 22 Apr 2021 21:08:21 -0400
haredoc: exclude more non-module dirs
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/cmd/haredoc/html.ha b/cmd/haredoc/html.ha
@@ -54,6 +54,8 @@ fn emit_html(ctx: *context) (void | error) = {
for (let i = 0z; i < len(ctx.version.subdirs); i += 1) {
let dir = ctx.version.subdirs[i];
if (dir == "cmd") continue;
+ if (dir == "docs") continue;
+ if (dir == "scripts") continue;
let path = module::identpath(ctx.ident);
defer free(path);