Skip to content

Commit d5a23ab

Browse files
committed
trigger binary linux debug
1 parent 325d6a5 commit d5a23ab

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

setup-local/dist/index.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,20 +1192,20 @@ class BinaryControl {
11921192
async _triggerBinary(operation) {
11931193
let triggerOutput = '';
11941194
let triggerError = '';
1195-
await exec.exec(
1196-
`${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
1197-
[],
1198-
{
1199-
listeners: {
1200-
stdout: (data) => {
1201-
triggerOutput += data.toString();
1202-
},
1203-
stderr: (data) => {
1204-
triggerError += data.toString();
1205-
},
1206-
},
1207-
},
1208-
);
1195+
// await exec.exec(
1196+
// `${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
1197+
// [],
1198+
// {
1199+
// listeners: {
1200+
// stdout: (data) => {
1201+
// triggerOutput += data.toString();
1202+
// },
1203+
// stderr: (data) => {
1204+
// triggerError += data.toString();
1205+
// },
1206+
// },
1207+
// },
1208+
// );
12091209

12101210
return {
12111211
output: triggerOutput,

setup-local/src/binaryControl.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -127,20 +127,20 @@ class BinaryControl {
127127
async _triggerBinary(operation) {
128128
let triggerOutput = '';
129129
let triggerError = '';
130-
await exec.exec(
131-
`${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
132-
[],
133-
{
134-
listeners: {
135-
stdout: (data) => {
136-
triggerOutput += data.toString();
137-
},
138-
stderr: (data) => {
139-
triggerError += data.toString();
140-
},
141-
},
142-
},
143-
);
130+
// await exec.exec(
131+
// `${LOCAL_BINARY_NAME} ${this.binaryArgs} --daemon ${operation}`,
132+
// [],
133+
// {
134+
// listeners: {
135+
// stdout: (data) => {
136+
// triggerOutput += data.toString();
137+
// },
138+
// stderr: (data) => {
139+
// triggerError += data.toString();
140+
// },
141+
// },
142+
// },
143+
// );
144144

145145
return {
146146
output: triggerOutput,

0 commit comments

Comments
 (0)