From 47007cddafcef719f425818964a863c4f3f6c6e7 Mon Sep 17 00:00:00 2001 From: Chauncey McAskill Date: Fri, 3 Dec 2021 15:10:21 -0500 Subject: [PATCH] Fix glob.js Amends 8dec2c69fee5a1aa268667d17edb2b4b61f62bd2 Fixed: - Forgot to rename all occurrences of 'modules' with 'candidates'. --- build/utils/glob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/utils/glob.js b/build/utils/glob.js index eaaf46a..fc63983 100644 --- a/build/utils/glob.js +++ b/build/utils/glob.js @@ -63,7 +63,7 @@ async function importGlob() { } throw new TypeError( - `No glob library was found, expected one of: ${modules.join(', ')}` + `No glob library was found, expected one of: ${candidates.join(', ')}` ); }