1
0
Fork 0

Fix tests

pull/1232/head
Sampark Sharma 2022-11-08 06:43:28 +00:00 committed by GitHub
parent 0c58e4113e
commit 62a66a8ce9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -92,9 +92,9 @@ test('gzip extract tar', async () => {
)
})
test('gzip extract GNU tar on windows', async () => {
test('gzip extract GNU tar on windows with GNUtar in path', async () => {
if (IS_WINDOWS) {
jest.spyOn(fs, 'existsSync').mockReturnValueOnce(false)
jest.spyOn(fs, 'existsSync').mockReturnValue(false)
const isGnuMock = jest
.spyOn(utils, 'isGnuTarInstalled')

View File

@ -119,7 +119,9 @@ export function getCacheFileName(compressionMethod: CompressionMethod): string {
export async function isGnuTarInstalled(): Promise<boolean> {
const gnuTar = `${process.env['windir']}\\Program Files\\Git\\usr\\bin\\tar.exe`
const versionOutput = await getVersion('tar')
return versionOutput.toLowerCase().includes('gnu tar') || fs.existsSync(gnuTar)
return (
versionOutput.toLowerCase().includes('gnu tar') || fs.existsSync(gnuTar)
)
}
export function assertDefined<T>(name: string, value?: T): T {

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) {