Skip to content

Commit

Permalink
fix: corrected the name of the REPOSITORY env var
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell committed Dec 1, 2020
1 parent 9a9b10f commit 9b87070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/print.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
const printHelp = `
This command will clone down multiple repositories. For each of those repositories, the script will be run in the context of that repository. The output of each script run in each repo will be printed, by default to stdout and stderr, but it can be configured to files as well.
The environment variable REPOSITORY_NAME will be set to the name of the repository currently being executed by the script.
The environment variable REPOSITORY will be set to the name of the repository currently being executed by the script.
`

// PrintCmd is the main command that runs a script for multiple repositories and print the output of each run
Expand Down
2 changes: 1 addition & 1 deletion cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
const runHelp = `
This command will clone down multiple repositories. For each of those repositories, the script will be run in the context of that repository. If the script finished with a zero exit code, and the script resulted in file changes, a pull request will be created with.
The environment variable REPOSITORY_NAME will be set to the name of the repository currently being executed by the script.
The environment variable REPOSITORY will be set to the name of the repository currently being executed by the script.
`

// RunCmd is the main command that runs a script for multiple repositories and creates PRs with the changes made
Expand Down

0 comments on commit 9b87070

Please sign in to comment.