From 51387ce28eaf6ed493dacc4588d16fcdc355ba94 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Fri, 27 Jul 2018 08:42:48 +0100 Subject: [PATCH] docs: Remove stray bracket from contributing doc command The CONTRIBUTING doc contained an extraneous command in the "Re-vendor PRs" section which makes the command invalid. Fixes #49. Signed-off-by: James O. D. Hunt --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e11ecbebe8..c6f4ba1c44 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -197,7 +197,7 @@ body: $ cd $GOPATH/src/github.com/opencontainers/runc $ old_commit="..." $ new_commit="..." - $ git log --no-merges --abbrev-commit --pretty=oneline "${old_commit}..${new_commit}") | sed 's/^/ /g' + $ git log --no-merges --abbrev-commit --pretty=oneline "${old_commit}..${new_commit}" | sed 's/^/ /g' ``` Paste the output of the previous command directly into the commit "as-is".