Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten committed Jul 5, 2023
2 parents c60a235 + c95232f commit b1f5776
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions build-scripts/gulp/download-translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 () {
Expand Down Expand Up @@ -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")
);

0 comments on commit b1f5776

Please sign in to comment.