Fix gnutar check on windows

This commit is contained in:
Sampark Sharma
2022-11-07 13:43:54 +00:00
committed by GitHub
parent 9366237c90
commit 0c58e4113e
2 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ async function getTarPath(
case 'win32': {
const systemTar = `${process.env['windir']}\\System32\\tar.exe`
const gnuTar = `${process.env['windir']}\\Program Files\\Git\\usr\\bin\\tar.exe`
if (compressionMethod !== CompressionMethod.Gzip && existsSync(gnuTar)) {
if (existsSync(gnuTar)) {
args.push('--force-local')
return gnuTar
} else if (compressionMethod !== CompressionMethod.Gzip) {