Skip to content

Commit

Permalink
Replaced ; with && under Update Bug in README.md. (Homebrew#815)
Browse files Browse the repository at this point in the history
* Replaced ; with && under Update Bug in README.md.

* Updated issue template's brew update fix.
  • Loading branch information
tdsmith committed Aug 26, 2016
2 parents 5a45e4c + 238d38b commit f4fb655
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Features, usage and installation instructions are [summarised on the homepage](h
## Update Bug
If Homebrew was updated on Aug 10-11th 2016 and `brew update` always says `Already up-to-date.` you need to run:
```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?
Expand Down

0 comments on commit f4fb655

Please sign in to comment.