Skip to content

Commit

Permalink
fix: do not append spec in name
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Nov 12, 2024
1 parent 70c51bb commit 284d5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class Agent implements SfAgent {
let agentSpec: AgentJobSpec;

if (this.mockDir) {
const specFileName = `${config.name}Spec.json`;
const specFileName = `${config.name}.json`;
const specFilePath = join(this.mockDir, `${specFileName}`);
try {
this.logger.debug(`Using mock directory: ${this.mockDir} for agent job spec creation`);
Expand Down

0 comments on commit 284d5d5

Please sign in to comment.