Skip to content

Commit

Permalink
Merge branch 'stewart42-main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuleatt committed Sep 25, 2020
2 parents 03db527 + c5b54d0 commit 310a2f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/action.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion src/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ async function execWithCredentials(
}
}

return Buffer.concat(deployOutputBuf).toString("utf-8"); // output from the CLI
return deployOutputBuf.length
? deployOutputBuf[deployOutputBuf.length - 1].toString("utf-8")
: ""; // output from the CLI
}

export async function deploy(gacFilename: string, deployConfig: DeployConfig) {
Expand Down

0 comments on commit 310a2f3

Please sign in to comment.