Skip to content

Commit

Permalink
fix(frontend): fix resource type in automate command (#3134)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Sep 7, 2023
1 parent 3fc681c commit 84198fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/services/CliCommand.service.ts
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 84198fc

Please sign in to comment.