Created
January 12, 2018 14:31
-
-
Save clare485/d6abcd4319ef062310a851d748323b06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Anyone affected by Google Chrome stopping .dev URLs from working: as a quick fix do this | |
Create an overwriting google-chrome executable at: | |
sudo nano /usr/local/bin/google-chrome | |
Make the content this: | |
#!/bin/bash | |
/usr/bin/google-chrome --ignore-certificate-errors | |
(The "/usr/bin/google-chrome" part may be different depending on your machine. Use "whereis google-chrome" to confirm it) | |
Then make it executable | |
sudo chmod 777 /usr/local/bin/google-chrome | |
Then you can pretty much just write "google-chrome" in the command window and you're away (some people can also do it with Alt+F2 for quicklaunch) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment