Skip to content

Commit

Permalink
Fix alfy-init freezing with some editors (e.g. vim) (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
gil committed Jun 24, 2021
1 parent 66e4add commit 60b4ea7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const execa = require('execa');

await execa('alfred-config', {
preferLocal: true,
localDir: __dirname
localDir: __dirname,
stdio: 'inherit'
});
} catch (error) {
console.error(error);
Expand Down

0 comments on commit 60b4ea7

Please sign in to comment.