Log errors when downloading lokalise translations (#18781)

This commit is contained in:
Bram Kragten 2023-11-28 08:21:19 +01:00 committed by GitHub
parent 07ae958eb0
commit db68c7faa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,6 +161,10 @@ gulp.task("fetch-lokalise", async function () {
})
);
})
.catch((err) => {
console.error(err);
throw err;
})
)
);
});