export function getArch()

in src/run.ts [63:65]


export function getArch(): string {
   return os.arch() === 'x64' ? 'amd64' : os.arch()
}