Skip to content

Commit

Permalink
Merge pull request #5 from forcedotcom/sh/spec-file-name-fix
Browse files Browse the repository at this point in the history
fix: do not append spec in name
  • Loading branch information
iowillhoit authored Nov 12, 2024
2 parents cf66a3e + 284d5d5 commit 4be115b
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 4be115b

Please sign in to comment.