Skip to content

Commit 60b4ea7

Browse files
authored
Fix alfy-init freezing with some editors (e.g. vim) (#137)
1 parent 66e4add commit 60b4ea7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

init.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const execa = require('execa');
1111

1212
await execa('alfred-config', {
1313
preferLocal: true,
14-
localDir: __dirname
14+
localDir: __dirname,
15+
stdio: 'inherit'
1516
});
1617
} catch (error) {
1718
console.error(error);

0 commit comments

Comments
 (0)