Shifter doesn't start in Windows until you press enter, but never reports that.
You could either report that you have to press ENTER to start or fix the behaviour by doing the below:
walk.js
Lines 146ff
run = function () {
var mod = mods.pop(), child;
if (mod) {
var stdioValue = [process.stdin, 'ignore', process.stderr];
if (process.platform == "win32") {
stdioValue = 'ignore';
}
child = spawn(process.execPath, args, {
cwd: path.join(shifter.cwd(), mod),
stdio: stdioValue
});
Just ignore stdin when using win32 so that you don't have to press enter to start shifter...
Shifter doesn't start in Windows until you press enter, but never reports that. You could either report that you have to press ENTER to start or fix the behaviour by doing the below:
walk.js Lines 146ff
Just ignore stdin when using win32 so that you don't have to press enter to start shifter...