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

View File

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