Skip to content

Commit 9f47c3b

Browse files
authored
Merge pull request #486 from mbrubeck/patch-3
Fix quotation mark in git command
2 parents 98412e2 + 449f3c0 commit 9f47c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/inside-rust/2019-12-23-formatting-the-compiler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ git rebase -i 9b98af84c4aa66392236fff59c86da2130d46d46
5050
# and the `--exec` command specifies that after each commit lands, it will be formatted.
5151
# This command will fail if your PR has intermediary commits with syntax conflicts.
5252
git rebase -i a916ac22b9f7f1f0f7aba0a41a789b3ecd765018 \
53-
--exec './x.py fmt && git add -u && git commit --amend` \
53+
--exec './x.py fmt && git add -u && git commit --amend' \
5454
# This exec is optional, and won't work if your intermediate commits don't build,
5555
# but it helps make sure that the formatting resolution didn't introduce any errors.
5656
# It's recommended to run it afterwards before pushing at least.

0 commit comments

Comments
 (0)