-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: improve help message for --distro-patches
- Loading branch information
Alessio Pragliola
committed
May 3, 2024
1 parent
e54afcf
commit 03ccc17
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -474,8 +474,12 @@ func setupCreateClusterCmdFlags(cmd *cobra.Command) { | |
cmd.Flags().String( | ||
"distro-patches", | ||
"", | ||
"Location where to download distribution's user-made patches from. "+ | ||
cmdutil.AnyGoGetterFormatStr, | ||
"Location where the distribution's user-made patches can be downloaded from. "+ | ||
"This can be either a local path (eg: /path/to/distro-patches) or "+ | ||
"a remote URL (eg: git::[email protected]:your-org/distro-patches?depth=1&ref=BRANCH_NAME). "+ | ||
cmdutil.AnyGoGetterFormatStr+ | ||
" Patches within this location must be in a folder named after the distribution version (eg: v1.29.0) and "+ | ||
"must have the same structure as the distribution's repository.", | ||
) | ||
|
||
cmd.Flags().StringP( | ||
|