Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Commit

Permalink
Merge f6b6562 into 78cab45
Browse files Browse the repository at this point in the history
  • Loading branch information
crazynammer authored Oct 26, 2023
2 parents 78cab45 + f6b6562 commit a7e8060
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"commandDescription": "Generates release defintion based on the artifacts installed from a commit reference",
"configFileFlagDescription":"Path to the config file which determines how the release defintion should be generated",
"releaseNameFlagDescription": "Set a releasename on the release definition file created",
"commandDescription": "Generates release definition based on the artifacts installed from a commit reference",
"configFileFlagDescription":"Path to the config file which determines how the release definition should be generated",
"releaseNameFlagDescription": "Set a release name on the release definition file created",
"commitFlagDescription": "Utilize the tags on the source branch to generate release definiton",
"directoryFlagDescription": "Relative path to directory to which the release defintion file should be generated, if the directory doesnt exist, it will be created",
"branchNameFlagDescription": "Repository branch in which the release defintion files are to be written",
"directoryFlagDescription": "Relative path to directory to which the release definition file should be generated, if the directory doesnt exist, it will be created",
"branchNameFlagDescription": "Repository branch in which the release definition files are to be written",
"noPushFlagDescription":"Do not push the changelog to a repository to the provided branch",
"forcePushFlagDescription": "Force push changes to the repository branch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Generate extends SfpowerscriptsCommand {
public static description = messages.getMessage('commandDescription');

public static examples = [
`$ sfp releasedefinition:generate -n <releaseName>`,
`$ sfp releasedefinition:generate -n <releaseName> -c <gitref> -f <configfile>`,
];

protected static requiresProject = true;
Expand All @@ -22,7 +22,7 @@ export default class Generate extends SfpowerscriptsCommand {
gitref: Flags.string({
char: 'c',
description: messages.getMessage('commitFlagDescription'),
required:true
required: true
}),
configfile: Flags.string({
char: 'f',
Expand Down

0 comments on commit a7e8060

Please sign in to comment.