Multiple fixes

This commit is contained in:
Joseph Garrone
2021-02-28 19:56:01 +01:00
parent a09157fe98
commit 8ff05917f2
6 changed files with 8 additions and 845 deletions

View File

@ -1,6 +1,5 @@
#!/usr/bin/env node
import { join as pathJoin } from "path";
import { keycloakThemeBuildingDirPath } from "./build-keycloak-theme";
import { downloadAndUnzip } from "./tools/downloadAndUnzip";
@ -12,8 +11,8 @@ if (require.main === module) {
console.log("execute!");
downloadAndUnzip({
"url": keycloakThemeBuildingDirPath,
"destDirPath": pathJoin(keycloakThemeBuildingDirPath, "src", "main", "resources", "theme")
"url": keycloakBuiltinThemesAndThirdPartyExamplesThemsUrl,
"destDirPath": keycloakThemeBuildingDirPath
});
}