Fixes windows issues #747

This commit is contained in:
Joseph Garrone 2024-12-17 18:04:06 +01:00
parent 150b01f1f3
commit f023d6bca7
2 changed files with 4 additions and 2 deletions

View File

@ -67,7 +67,9 @@ export function vendorFrontendDependencies(params: { distDirPath: string }) {
) )
); );
run(`npx webpack --config ${webpackConfigJsFilePath}`); run(`npx webpack --config ${pathBasename(webpackConfigJsFilePath)}`, {
cwd: pathDirname(webpackConfigJsFilePath)
});
fs.readdirSync(webpackOutputDirPath) fs.readdirSync(webpackOutputDirPath)
.filter(fileBasename => !fileBasename.endsWith(".txt")) .filter(fileBasename => !fileBasename.endsWith(".txt"))

View File

@ -67,7 +67,7 @@ export async function dumpContainerConfig(params: {
...["--db", "dev-file"], ...["--db", "dev-file"],
...[ ...[
"--db-url", "--db-url",
"'jdbc:h2:file:/tmp/h2/keycloakdb;NON_KEYWORDS=VALUE'" '"jdbc:h2:file:/tmp/h2/keycloakdb;NON_KEYWORDS=VALUE"'
] ]
]) ])
], ],