git-watchtower 1.10.16 → 1.10.17
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/git-watchtower.js +1 -0
- package/package.json +1 -1
package/bin/git-watchtower.js
CHANGED
|
@@ -2530,6 +2530,7 @@ function setupKeyboardInput() {
|
|
|
2530
2530
|
const child = spawn('npm', ['i', '-g', 'git-watchtower'], {
|
|
2531
2531
|
stdio: 'ignore',
|
|
2532
2532
|
detached: false,
|
|
2533
|
+
shell: process.platform === 'win32',
|
|
2533
2534
|
});
|
|
2534
2535
|
child.on('close', (code) => {
|
|
2535
2536
|
store.setState({ updateInProgress: false, updateModalVisible: false, updateModalSelectedIndex: 0 });
|
package/package.json
CHANGED