Skip to content
This repository was archived by the owner on Mar 18, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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