mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-01-03 23:12:55 +08:00
send tar --version to debug log (#342)
This commit is contained in:
parent
f90a2dcfd4
commit
84f1e31b69
@ -202,14 +202,17 @@ export async function extractTar(
|
|||||||
dest = await _createExtractFolder(dest)
|
dest = await _createExtractFolder(dest)
|
||||||
|
|
||||||
// Determine whether GNU tar
|
// Determine whether GNU tar
|
||||||
|
core.debug('Checking tar --version')
|
||||||
let versionOutput = ''
|
let versionOutput = ''
|
||||||
await exec('tar --version', [], {
|
await exec('tar --version', [], {
|
||||||
ignoreReturnCode: true,
|
ignoreReturnCode: true,
|
||||||
|
silent: true,
|
||||||
listeners: {
|
listeners: {
|
||||||
stdout: (data: Buffer) => (versionOutput += data.toString()),
|
stdout: (data: Buffer) => (versionOutput += data.toString()),
|
||||||
stderr: (data: Buffer) => (versionOutput += data.toString())
|
stderr: (data: Buffer) => (versionOutput += data.toString())
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
core.debug(versionOutput.trim())
|
||||||
const isGnuTar = versionOutput.toUpperCase().includes('GNU TAR')
|
const isGnuTar = versionOutput.toUpperCase().includes('GNU TAR')
|
||||||
|
|
||||||
// Initialize args
|
// Initialize args
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user