Skip to content

Commit

Permalink
Always send a build's code as part of /status info (#2762)
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd authored Jan 28, 2022
1 parent 8eb1e11 commit 2ecdcb2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/autodeployment/builds.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 2ecdcb2

Please sign in to comment.