Skip to content

Commit

Permalink
style(lint): result of yarn format
Browse files Browse the repository at this point in the history
it appears this is not checked in CI
  • Loading branch information
mikehardy committed Aug 3, 2024
1 parent 93723ed commit f5cc2d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/localization/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,13 @@ export async function updateI18nFiles() {
break;
}

androidLanguages.map(async androidLanguage => {
androidLanguages.map(async (androidLanguage) => {
console.log(
"\nCopying language files from " + language + " to " + androidLanguage,
);
const valuesDirectory = path.join(RES_VALUES_LANG_DIR + androidLanguage + "/");
const valuesDirectory = path.join(
RES_VALUES_LANG_DIR + androidLanguage + "/",
);
createDirIfNotExisting(valuesDirectory);

// Copy localization files, mask chars and append gnu/gpl licence
Expand Down

0 comments on commit f5cc2d3

Please sign in to comment.