From cc112b668322301b46b4e2bed0d3a817947cfde6 Mon Sep 17 00:00:00 2001 From: Albin Ekblom Date: Sat, 6 Aug 2016 10:44:23 +0200 Subject: [PATCH] Use single quotes for better compatibility (#575) --- lib/actions/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/actions/ui.js b/lib/actions/ui.js index 89abfd75..3c1ba9f5 100644 --- a/lib/actions/ui.js +++ b/lib/actions/ui.js @@ -157,7 +157,7 @@ export function showPreferences () { // Leading space prevents command to be store in shell history [' echo Attempting to open ~/.hyperterm.js with your \$EDITOR', // eslint-disable-line no-useless-escape ' echo If it fails, open it manually with your favorite editor!', - ' bash -c "exec env ${EDITOR:=' + editorFallback + '} ~/.hyperterm.js"', + ' bash -c \'exec env ${EDITOR:=' + editorFallback + '} ~/.hyperterm.js\'', '' ].join('\n') ));