openkbs 0.0.70 → 0.0.71
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/package.json +1 -1
- package/src/actions.js +2 -1
- package/version.json +2 -2
package/package.json
CHANGED
package/src/actions.js
CHANGED
|
@@ -717,7 +717,8 @@ async function updateCliAction() {
|
|
|
717
717
|
const { spawn } = require('child_process');
|
|
718
718
|
const updateProcess = spawn('npm', ['update', '-g', 'openkbs'], {
|
|
719
719
|
detached: true,
|
|
720
|
-
stdio: 'inherit'
|
|
720
|
+
stdio: 'inherit',
|
|
721
|
+
shell: true
|
|
721
722
|
});
|
|
722
723
|
|
|
723
724
|
updateProcess.unref(); // Allow parent to exit
|
package/version.json
CHANGED