keycloakify 10.0.0-rc.104 → 10.0.0-rc.105

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/440.index.js CHANGED
@@ -1237,7 +1237,7 @@ async function buildJar(params) {
1237
1237
  });
1238
1238
  await promises_.writeFile((0,external_path_.join)(keycloakifyBuildTmpDirPath, "pom.xml"), Buffer.from(pomFileCode, "utf8"));
1239
1239
  }
1240
- await new Promise((resolve, reject) => external_child_process_default().exec(`mvn clean install -Dmaven.repo.local=${(0,external_path_.join)(keycloakifyBuildTmpDirPath, ".m2")}`, { cwd: keycloakifyBuildTmpDirPath }, error => {
1240
+ await new Promise((resolve, reject) => external_child_process_default().exec(`mvn clean install -Dmaven.repo.local="${(0,external_path_.join)(keycloakifyBuildTmpDirPath, ".m2")}"`, { cwd: keycloakifyBuildTmpDirPath }, error => {
1241
1241
  if (error !== null) {
1242
1242
  console.error(`Build jar failed: ${JSON.stringify({
1243
1243
  jarFileBasename,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "10.0.0-rc.104",
3
+ "version": "10.0.0-rc.105",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -207,7 +207,7 @@ export async function buildJar(params: {
207
207
 
208
208
  await new Promise<void>((resolve, reject) =>
209
209
  child_process.exec(
210
- `mvn clean install -Dmaven.repo.local=${pathJoin(keycloakifyBuildTmpDirPath, ".m2")}`,
210
+ `mvn clean install -Dmaven.repo.local="${pathJoin(keycloakifyBuildTmpDirPath, ".m2")}"`,
211
211
  { cwd: keycloakifyBuildTmpDirPath },
212
212
  error => {
213
213
  if (error !== null) {