From 76639d7999434cffb8fb3cbe3aefc35b237fa198 Mon Sep 17 00:00:00 2001 From: Mike Pennisi Date: Thu, 25 Apr 2024 15:46:30 -0400 Subject: [PATCH] Correct error in command --- lib/install/macos.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/install/macos.js b/lib/install/macos.js index 5637f4e..a73df4d 100644 --- a/lib/install/macos.js +++ b/lib/install/macos.js @@ -169,6 +169,6 @@ async function enableExtension() { */ async function setSystemVoice(voice) { await exec( - `defaults write com.apple.Accessibility SpeechVoiceIdentifierForLanguage '{2 = {en = "${voice}";};}`, + `defaults write com.apple.Accessibility SpeechVoiceIdentifierForLanguage '{2 = {en = "${voice}";};}'`, ); }