From 517a72a16f37cdffcc2f53af238883d1c3a50065 Mon Sep 17 00:00:00 2001 From: Beka Westberg Date: Thu, 1 Sep 2022 21:00:59 +0000 Subject: [PATCH] chore: fix release tasks checking for bad directories (#6404) --- scripts/gulpfiles/release_tasks.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/gulpfiles/release_tasks.js b/scripts/gulpfiles/release_tasks.js index b633391f4..2841ad05e 100644 --- a/scripts/gulpfiles/release_tasks.js +++ b/scripts/gulpfiles/release_tasks.js @@ -82,8 +82,7 @@ function checkBranch(done) { // Sanity check that the RELASE_DIR directory exists, and that certain // files are in it. function checkReleaseDir(done) { - const sanityFiles = ['blockly_compressed.js', 'blocks_compressed.js', - 'core', 'blocks', 'generators']; + const sanityFiles = ['blockly_compressed.js', 'blocks_compressed.js']; // Check that directory exists. if (fs.existsSync(RELEASE_DIR)) { // Sanity check that certain files exist in RELASE_DIR.