This commit is contained in:
JulianRooze 2025-03-27 22:59:40 +01:00
parent 3d6255d50f
commit 67e7f6effb

View file

@ -1,13 +1,3 @@
import * as core from '@actions/core'
import {getExecOutput} from '@actions/exec'
export async function listFiles(): Promise<string[]> {
return []
}
function fixStdOutNullTermination(): void {
// Previous command uses NULL as delimiters and output is printed to stdout.
// We have to make sure next thing written to stdout will start on new line.
// Otherwise things like ::set-output wouldn't work.
core.info('')
}