16 lines
195 B
16 lines
195 B
2 years ago
|
[CmdletBinding()]
|
||
|
param (
|
||
|
[Parameter(Mandatory=$true)]
|
||
|
[string] $Arch
|
||
|
)
|
||
|
|
||
|
if ($IsWindows) {
|
||
|
"win-$Arch"
|
||
|
}
|
||
|
elseif ($IsLinux) {
|
||
|
"linux-$Arch"
|
||
|
}
|
||
|
elseif ($IsMacOS) {
|
||
|
"osx-$Arch"
|
||
|
}
|