keycloakify 10.0.0-rc.62 → 10.0.0-rc.63
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/526.index.js
CHANGED
@@ -414,7 +414,7 @@ async function appBuild(params) {
|
|
414
414
|
}
|
415
415
|
})();
|
416
416
|
const dResult = new Deferred.Deferred();
|
417
|
-
const child = external_child_process_.spawn(command, args, { cwd });
|
417
|
+
const child = external_child_process_.spawn(command, args, { cwd, shell: true });
|
418
418
|
child.stdout.on("data", data => {
|
419
419
|
if (data.toString("utf8").includes("gzip:")) {
|
420
420
|
return;
|
@@ -438,7 +438,8 @@ async function keycloakifyBuild(params) {
|
|
438
438
|
const dResult = new Deferred.Deferred();
|
439
439
|
const child = external_child_process_.spawn("npx", ["keycloakify", "build"], {
|
440
440
|
cwd: buildContext.projectDirPath,
|
441
|
-
env: Object.assign(Object.assign({}, process.env), { [constants/* onlyBuildJarFileBasenameEnvName */.Dv]: onlyBuildJarFileBasename })
|
441
|
+
env: Object.assign(Object.assign({}, process.env), { [constants/* onlyBuildJarFileBasenameEnvName */.Dv]: onlyBuildJarFileBasename }),
|
442
|
+
shell: true
|
442
443
|
});
|
443
444
|
child.stdout.on("data", data => process.stdout.write(data));
|
444
445
|
child.stderr.on("data", data => process.stderr.write(data));
|
@@ -727,7 +728,8 @@ async function command(params) {
|
|
727
728
|
...(realmJsonFilePath === undefined ? [] : ["--import-realm"])
|
728
729
|
],
|
729
730
|
{
|
730
|
-
cwd: buildContext.keycloakifyBuildDirPath
|
731
|
+
cwd: buildContext.keycloakifyBuildDirPath,
|
732
|
+
shell: true
|
731
733
|
}
|
732
734
|
];
|
733
735
|
const child = external_child_process_.spawn(...spawnArgs);
|
package/package.json
CHANGED
@@ -109,7 +109,7 @@ export async function appBuild(params: {
|
|
109
109
|
|
110
110
|
const dResult = new Deferred<{ isSuccess: boolean }>();
|
111
111
|
|
112
|
-
const child = child_process.spawn(command, args, { cwd });
|
112
|
+
const child = child_process.spawn(command, args, { cwd, shell: true });
|
113
113
|
|
114
114
|
child.stdout.on("data", data => {
|
115
115
|
if (data.toString("utf8").includes("gzip:")) {
|
@@ -421,7 +421,8 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
421
421
|
...(realmJsonFilePath === undefined ? [] : ["--import-realm"])
|
422
422
|
],
|
423
423
|
{
|
424
|
-
cwd: buildContext.keycloakifyBuildDirPath
|
424
|
+
cwd: buildContext.keycloakifyBuildDirPath,
|
425
|
+
shell: true
|
425
426
|
}
|
426
427
|
] as const;
|
427
428
|
|