From 60b4ea74218dc13d332ef45448e5c1d091a6bd7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Gil?= Date: Thu, 24 Jun 2021 19:03:08 +0200 Subject: [PATCH] Fix alfy-init freezing with some editors (e.g. vim) (#137) --- init.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.js b/init.js index b0c683c..95b1856 100755 --- a/init.js +++ b/init.js @@ -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);