Skip to content
Snippets Groups Projects
Unverified Commit 1a0220d9 authored by Zhiming Wang's avatar Zhiming Wang
Browse files

README and ISSUE_TEMPLATE: quote $(brew --repo)

Always a good idea to quote command substitution.
parent 95863904
No related branches found
No related tags found
No related merge requests found
If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run: `cd $(brew --repo) && git fetch && git reset --hard origin/master && brew update`. If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run: `cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew update`.
# Please follow the general troubleshooting steps first: # Please follow the general troubleshooting steps first:
......
...@@ -4,7 +4,7 @@ Features, usage and installation instructions are [summarised on the homepage](h ...@@ -4,7 +4,7 @@ Features, usage and installation instructions are [summarised on the homepage](h
## Update Bug ## Update Bug
If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run: If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run:
```bash ```bash
cd $(brew --repo) && git fetch && git reset --hard origin/master && brew update cd "$(brew --repo)" && git fetch && git reset --hard origin/master && brew update
``` ```
## What Packages Are Available? ## What Packages Are Available?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment