Skip to content

Commit 87dc1fd

Browse files
committed
fix imports
1 parent d28f017 commit 87dc1fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/exec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { info, debug, error, setFailed } from '@actions/core';
1+
import { info, debug, error } from '@actions/core';
22
import proc from 'child_process';
33
import { Transform } from 'stream';
44
import which from 'which';
@@ -13,6 +13,7 @@ export class Capture {
1313

1414
return new Transform({
1515
transform(chunk, _encoding, callback) {
16+
// TODO: make this work
1617
// Capture the chunk
1718
chunks.push(chunk);
1819
// Pass the data through unchanged

0 commit comments

Comments
 (0)