Skip to content

Commit

Permalink
fix(frontend): fix resource type in automate command
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Sep 7, 2023
1 parent 3fc681c commit 5273999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/services/CliCommand.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const CliCommandService = () => ({
let command = Object.entries(options).reduce(
(acc, [option, enabled]) =>
this.applyOptions[option as CliCommandOption]({command: acc, enabled, id, variableSetId, fileName}),
`run ${resourceType}`
`run ${resourceType.slice(0, -1)}`
);

command = this.applyRequiredGates(command, requiredGates);
Expand Down

0 comments on commit 5273999

Please sign in to comment.