From c95232fecb3828b3868b07b7c4d4764af6cd4d8f Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Wed, 5 Jul 2023 17:23:24 +0200 Subject: [PATCH] Update download-translations.js --- build-scripts/gulp/download-translations.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build-scripts/gulp/download-translations.js b/build-scripts/gulp/download-translations.js index d7b3a9e853..d8581e37aa 100644 --- a/build-scripts/gulp/download-translations.js +++ b/build-scripts/gulp/download-translations.js @@ -64,7 +64,7 @@ gulp.task("convert-backend-translations", function () { return gulp .src([`${inDirBackend}/*.json`]) .pipe(transform((data, file) => convertBackendTranslations(data, file))) - .pipe(gulp.dest(`${inDirBackend}/converted`)); + .pipe(gulp.dest(inDirBackend)); }); gulp.task("check-translations-html", function () { @@ -92,9 +92,5 @@ gulp.task("check-all-files-exist", async function () { gulp.task( "check-downloaded-translations", - gulp.series( - "convert-backend-translations", - "check-translations-html", - "check-all-files-exist" - ) + gulp.series("check-translations-html", "check-all-files-exist") );