Skip to content

Commit

Permalink
Log errors when downloading lokalise translations (#18781)
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten authored Nov 28, 2023
1 parent 07ae958 commit db68c7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build-scripts/gulp/download-translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ gulp.task("fetch-lokalise", async function () {
})
);
})
.catch((err) => {
console.error(err);
throw err;
})
)
);
});
Expand Down

0 comments on commit db68c7f

Please sign in to comment.