You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/gapicgen/cmd/genbot/main.go
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ func main() {
41
41
githubName:=flag.String("githubName", os.Getenv("GITHUB_NAME"), "The name of the author for git commits.")
42
42
githubEmail:=flag.String("githubEmail", os.Getenv("GITHUB_EMAIL"), "The email address of the author.")
43
43
localMode:=flag.Bool("local", strToBool(os.Getenv("GENBOT_LOCAL_MODE")), "Enables generating sources locally. This mode will not open any pull requests.")
44
+
forceAll:=flag.Bool("forceAll", strToBool(os.Getenv("GENBOT_FORCE_ALL")), "Enables regenerating everything regardless of changes in googleapis.")
44
45
45
46
// flags for local mode
46
47
googleapisDir:=flag.String("googleapis-dir", os.Getenv("GOOGLEAPIS_DIR"), "Directory where sources of googleapis/googleapis resides. If unset the sources will be cloned to a temporary directory that is not cleaned up.")
0 commit comments