Skip to content

Commit

Permalink
fix(publish): fix artifact nomenclature used while publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
azlam-abdulsalam committed Jan 17, 2024
1 parent 10fbdb2 commit bd8e894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sfp-cli/src/commands/orchestrator/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export default class Promote extends sfpCommand {
let artifactRootDirectory = path.dirname(sfpPackage.sourceDir);

// NPM does not accept packages with uppercase characters
let name: string = sfpPackage.packageName.toLowerCase() + '_sfpowerscriptsartifact';
let name: string = sfpPackage.packageName.toLowerCase() + '_sfpowerscripts_artifact';

//Check whether the user has already passed in @

Expand Down

0 comments on commit bd8e894

Please sign in to comment.