Make the dongle to download smaller

This commit is contained in:
Joseph Garrone
2021-03-04 21:43:36 +01:00
parent 624409434a
commit 934c07f365
6 changed files with 18 additions and 24 deletions

View File

@ -2,7 +2,7 @@ import * as fs from "fs";
import { join as pathJoin, relative as pathRelative } from "path";
import { crawl } from "./tools/crawl";
import { downloadAndUnzip } from "./tools/downloadAndUnzip";
import { keycloakBuiltinThemesAndThirdPartyExamplesThemsUrl } from "./download-sample-keycloak-themes";
import { builtinThemesUrl } from "./install-builtin-keycloak-themes";
import { getProjectRoot } from "./tools/getProjectRoot";
import * as child_process from "child_process";
@ -15,7 +15,7 @@ child_process.execSync(`rm -rf ${tmpDirPath}`);
downloadAndUnzip({
"destDirPath": tmpDirPath,
"url": keycloakBuiltinThemesAndThirdPartyExamplesThemsUrl
"url": builtinThemesUrl
});
type Dictionary = { [idiomId: string]: string };