We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cff12c commit 86d3ddeCopy full SHA for 86d3dde
src/job.ts
@@ -59,6 +59,7 @@ export class Job {
59
60
// Parse extends recursively and deepExtend data.
61
if (jobData.extends) {
62
+ jobData.extends = typeof jobData.extends === "string" ? [ jobData.extends ] : jobData.extends;
63
let i;
64
let clonedData: any = clone(jobData);
65
const maxDepth = 50;
0 commit comments