summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSolomon Kinard <solomonkinard@google.com>2019-07-08 15:09:55 -0700
committerJonathan Nieder <jrn@google.com>2019-07-08 22:42:38 +0000
commit490e16385db3c0ba674cd6e03fa6e915e3f050ca (patch)
treeae7f0731cd6724947341372957930a96c6d81b23
parentec558df07405d4644ea74c5a0ba61b2ee1aba09d (diff)
downloadgit-repo-490e16385db3c0ba674cd6e03fa6e915e3f050ca.tar.gz
Remove double forall from "repo help forall" output
%prog represents the full subcommand ("repo" + subcommand name), not a Windows-style environment variable for "repo". The current help output shows repo forall% forall ... Correct the variable usage so it shows "repo forall ..." instead. Change-Id: I1fea55572428cc922ddf24ace1168a3d8f82dad0
-rw-r--r--subcmds/forall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py
index 9454ef6c..3e6007ba 100644
--- a/subcmds/forall.py
+++ b/subcmds/forall.py
@@ -105,7 +105,7 @@ following <command>.
105 105
106Example: to list projects: 106Example: to list projects:
107 107
108 %prog% forall -c 'echo $REPO_PROJECT' 108 %prog -c 'echo $REPO_PROJECT'
109 109
110Notice that $REPO_PROJECT is quoted to ensure it is expanded in 110Notice that $REPO_PROJECT is quoted to ensure it is expanded in
111the context of running <command> instead of in the calling shell. 111the context of running <command> instead of in the calling shell.