From c42c5e72b49b39205836376a9c01966d04a30d4a Mon Sep 17 00:00:00 2001 From: Christopher Allen Date: Tue, 13 Jul 2021 16:08:27 +0100 Subject: [PATCH] Remove obsolete TODO No more `execSync('mkdir -p')` so no more need to check if it works on Windows. --- scripts/gulpfiles/build_tasks.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/gulpfiles/build_tasks.js b/scripts/gulpfiles/build_tasks.js index 108b186a0..7408ec8cf 100644 --- a/scripts/gulpfiles/build_tasks.js +++ b/scripts/gulpfiles/build_tasks.js @@ -446,7 +446,6 @@ this removal! */ function buildLangfiles(done) { // Create output directory. - // TODO(#5000): does mkidr -p work on Windows? const outputDir = path.join(BUILD_DIR, 'msg', 'js'); fs.mkdirSync(outputDir, {recursive: true});