Merge pull request #193 from brianmichel/brian/use-tar-on-all-platforms

Use tar on all platforms
This commit is contained in:
Brian Michel
2025-04-01 12:43:13 -04:00
committed by GitHub
parent 7d986dd989
commit 407a484056

View File

@@ -160,12 +160,7 @@ function getPlatform(): Error | string {
}
function getExtension(): string {
switch (process.platform) {
case 'win32':
return 'zip';
default:
return 'tar.gz';
}
return 'tar.gz';
}
setup().catch(err => {