From 19a7c2bc2fbef9a7bd02868a5e73acc96b76dcf1 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 6 May 2017 00:18:34 -0400 Subject: [PATCH] fix chrome symlink issue for mac --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c8ff9697..68f1c65a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,8 @@ Those numbers are from running it single-threaded on my i5 machine with 50mbps d ```bash # On Mac: brew install Caskroom/versions/google-chrome-canary wget python3 -ln -s "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary" /usr/local/bin/google-chrome +echo -e "#!/bin/bash\n/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary $@" > /usr/local/bin/google-chrome +chmod +x /usr/local/bin/google-chrome # On Linux: wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'