diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-05-13 08:52:32 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-31 12:11:51 -0300 |
commit | b6d09fa09a731f21cb35861715cf076f49460e28 (patch) | |
tree | f05e8f358c9900a04bd23262032577a253cb96f2 /src | |
parent | 4fbc81726b14ee34a7f85ce013df8f8b1f1797be (diff) |
upd8: move generateURLs call way higher
Diffstat (limited to 'src')
-rwxr-xr-x | src/upd8.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/upd8.js b/src/upd8.js index 1585fdd4..9ea78020 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -1483,6 +1483,8 @@ async function main() { }); } + const urls = generateURLs(urlSpec); + if (stepStatusSummary.buildSearchIndex.status === STATUS_NOT_STARTED) { Object.assign(stepStatusSummary.buildSearchIndex, { status: STATUS_STARTED_NOT_DONE, @@ -2007,8 +2009,6 @@ async function main() { timeEnd: Date.now(), }); - const urls = generateURLs(urlSpec); - let missingImagePaths; if (stepStatusSummary.verifyImagePaths.status === STATUS_NOT_APPLICABLE) { |