1
0
Fork 0

Add debug statement for exact zstd version value and remove dependence on version for now

pull/1353/head
Lovepreet Singh 2023-02-20 19:03:44 +00:00
parent 7c15bf6f40
commit e6e29846f2
1 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ async function getVersion(
additionalArgs.push('--version')
core.debug(`Checking ${app} ${additionalArgs.join(' ')}`)
try {
await exec.exec(`${app} `, additionalArgs, {
await exec.exec(`${app}`, additionalArgs, {
ignoreReturnCode: true,
silent: true,
listeners: {
@ -100,9 +100,9 @@ async function getVersion(
export async function getCompressionMethod(): Promise<CompressionMethod> {
const versionOutput = await getVersion('zstd', ['--quiet'])
const version = semver.clean(versionOutput)
core.debug(`zstd version: ${version}`)
if (versionOutput === '' || version === null) {
// zstd is not installed
if (versionOutput === '') {
return CompressionMethod.Gzip
} else {
return CompressionMethod.ZstdWithoutLong