Remove unnecessary default value for arch argument

This commit is contained in:
panticmilos 2022-12-08 12:36:43 +01:00
parent 3eeab9dd6d
commit 97458b29d7
2 changed files with 2 additions and 2 deletions

View file

@ -375,7 +375,7 @@ export function parseGoVersionFile(versionFilePath: string): string {
export async function resolveStableVersionInput(
versionSpec: string,
arch = os.arch(),
arch: string,
platform: string,
manifest: tc.IToolRelease[] | IGoVersion[]
): Promise<string> {