Skip to content

Commit 013b2b9

Browse files
committed
Add name to domain and project flags
1 parent 2c85971 commit 013b2b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ Flags:
6666
--to-application-credential-name string destination application credential name
6767
--to-application-credential-secret string destination application credential secret
6868
--to-auth-url string destination auth URL (if not provided, detected automatically from the source auth URL and destination region)
69-
--to-domain string destination domain
69+
--to-domain string destination domain name
7070
--to-password string destination username password
71-
--to-project string destination project
71+
--to-project string destination project name
7272
--to-region string destination region
7373
--to-username string destination username
7474
-y, --yes assume "yes" to all questions

pkg/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ func initRootCmdFlags() {
9090
RootCmd.PersistentFlags().BoolP("no", "n", false, "assume \"no\" to all questions")
9191
RootCmd.PersistentFlags().StringP("to-auth-url", "", "", "destination auth URL (if not provided, detected automatically from the source auth URL and destination region)")
9292
RootCmd.PersistentFlags().StringP("to-region", "", "", "destination region")
93-
RootCmd.PersistentFlags().StringP("to-domain", "", "", "destination domain")
94-
RootCmd.PersistentFlags().StringP("to-project", "", "", "destination project")
93+
RootCmd.PersistentFlags().StringP("to-domain", "", "", "destination domain name")
94+
RootCmd.PersistentFlags().StringP("to-project", "", "", "destination project name")
9595
RootCmd.PersistentFlags().StringP("to-username", "", "", "destination username")
9696
RootCmd.PersistentFlags().StringP("to-password", "", "", "destination username password")
9797
RootCmd.PersistentFlags().StringP("to-application-credential-name", "", "", "destination application credential name")

0 commit comments

Comments
 (0)