Skip to content

Commit 5dc1d5a

Browse files
committed
Deploy Production Code for Commit 0674e55 🚀
1 parent 0674e55 commit 5dc1d5a

File tree

547 files changed

+126788
-115719
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

547 files changed

+126788
-115719
lines changed

lib/execute.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ function execute(cmd, cwd, silent) {
3939
}
4040
exports.execute = execute;
4141
function stdout(data) {
42-
if (output.length < buffer_1.default.constants.MAX_STRING_LENGTH) {
43-
output += data.toString().trim();
42+
const dataString = data.toString().trim();
43+
if (output.length + dataString.length < buffer_1.default.constants.MAX_STRING_LENGTH) {
44+
output += dataString;
4445
}
4546
}
4647
exports.stdout = stdout;

node_modules/@actions/core/README.md

+11-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js

+15-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/command.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.d.ts

+16-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/core/lib/core.js

+48-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)