diff --git a/tools/autodeployment/builds.js b/tools/autodeployment/builds.js index 51b728d39c..70ab8f0e5b 100644 --- a/tools/autodeployment/builds.js +++ b/tools/autodeployment/builds.js @@ -34,16 +34,13 @@ class Build { type: this.type, githubData: this.githubData, startedDate: this.startedDate, + code: this.code, }; if (this.stoppedDate) { build.stoppedDate = this.stoppedDate; } - if (this.code) { - build.code = this.code; - } - return build; } }