Fixed SPACES issue, also fixed redirection error bug in build.

This commit is contained in:
Brad Nelson
2024-02-24 12:30:08 -08:00
parent eaa8a3c4c3
commit 854b3b5d74
7 changed files with 18 additions and 11 deletions

View File

@ -137,5 +137,5 @@ Alias('publish', ' '.join([
'$src/tools/publish.py',
] + PUBLISH_PARTS),
'$src/tools/webindex.py >$dst/gen/archive.html && ' +
'$src/tools/publish.py --src $dst/gen/archive.html --dst archive.html 2>&1 | cat >/dev/null'),
'$src/tools/publish.py --src $dst/gen/archive.html --dst archive.html >/dev/null 2>&1'),
]))