mirror of
https://github.com/actions/setup-go.git
synced 2025-06-28 16:03:43 +00:00
Fix extractor selection on windows
This commit is contained in:
parent
3b4dc6cbed
commit
bba6fe1d58
2 changed files with 4 additions and 4 deletions
|
@ -122,10 +122,10 @@ async function installGoVersion(
|
|||
}
|
||||
|
||||
export async function extractGoArchive(archivePath: string): Promise<string> {
|
||||
const arch = os.arch();
|
||||
const platform = os.platform();
|
||||
let extPath: string;
|
||||
|
||||
if (arch === 'win32') {
|
||||
if (platform === 'win32') {
|
||||
extPath = await tc.extractZip(archivePath);
|
||||
} else {
|
||||
extPath = await tc.extractTar(archivePath);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue