Fix tests

This commit is contained in:
Sampark Sharma
2022-11-08 06:43:28 +00:00
committed by GitHub
parent 0c58e4113e
commit 62a66a8ce9
3 changed files with 6 additions and 3 deletions

View File

@@ -16,6 +16,7 @@ async function getTarPath(
const systemTar = `${process.env['windir']}\\System32\\tar.exe`
const gnuTar = `${process.env['windir']}\\Program Files\\Git\\usr\\bin\\tar.exe`
if (existsSync(gnuTar)) {
// Making GNUtar + zstd as default on windows
args.push('--force-local')
return gnuTar
} else if (compressionMethod !== CompressionMethod.Gzip) {