Skip to content

Commit

Permalink
fix(fields): add job not found messaging to AS_TOOK
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignigena committed May 12, 2021
1 parent 01e61cd commit 70f53ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class FieldFactory {
});
const currentJob = resp?.data.jobs.find(job => job.name === this.jobName);
if (currentJob === undefined) {
process.env.AS_JOB = this.jobIsNotFound;
process.env.AS_TOOK = this.jobIsNotFound;
return this.jobIsNotFound;
}

Expand Down

0 comments on commit 70f53ef

Please sign in to comment.