From fea0fd2a2fbbc7fce651f42e174979c9274adb89 Mon Sep 17 00:00:00 2001 From: borjarobert <54457920+borjarobert@users.noreply.github.com> Date: Wed, 16 Feb 2022 23:45:40 +0100 Subject: [PATCH] a couple of spaces needed escaping In the 8th line Google\ Chrome needs escaping the space (twice) --- fix_google_chrome.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fix_google_chrome.sh b/fix_google_chrome.sh index b6f0508..9da5dc3 100644 --- a/fix_google_chrome.sh +++ b/fix_google_chrome.sh @@ -5,5 +5,5 @@ mv /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome-bin touch /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome echo '#!/bin/sh' >> /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome -echo 'exec /Applications/Google Chrome.app/Contents/MacOS/Google Chrome-bin --args --disable-async-dns' >> /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome -chmod +x /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \ No newline at end of file +echo 'exec /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome-bin --args --disable-async-dns' >> /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome +chmod +x /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome