diff options
author | Solomon Kinard <solomonkinard@google.com> | 2019-07-08 15:09:55 -0700 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2019-07-08 22:42:38 +0000 |
commit | 490e16385db3c0ba674cd6e03fa6e915e3f050ca (patch) | |
tree | ae7f0731cd6724947341372957930a96c6d81b23 | |
parent | ec558df07405d4644ea74c5a0ba61b2ee1aba09d (diff) | |
download | git-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.py | 2 |
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 | ||
106 | Example: to list projects: | 106 | Example: to list projects: |
107 | 107 | ||
108 | %prog% forall -c 'echo $REPO_PROJECT' | 108 | %prog -c 'echo $REPO_PROJECT' |
109 | 109 | ||
110 | Notice that $REPO_PROJECT is quoted to ensure it is expanded in | 110 | Notice that $REPO_PROJECT is quoted to ensure it is expanded in |
111 | the context of running <command> instead of in the calling shell. | 111 | the context of running <command> instead of in the calling shell. |