mirror of https://github.com/v2ray/v2ray-core
parent
14996da74a
commit
9ae4611eac
|
@ -100,6 +100,14 @@ func getSuffix(os GoOS, arch GoArch) string {
|
||||||
case Arm:
|
case Arm:
|
||||||
suffix = "-freebsd-arm"
|
suffix = "-freebsd-arm"
|
||||||
}
|
}
|
||||||
|
case OpenBSD:
|
||||||
|
switch arch {
|
||||||
|
case X86:
|
||||||
|
suffix = "-openbsd-32"
|
||||||
|
case Amd64:
|
||||||
|
suffix = "-openbsd-64"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return suffix
|
return suffix
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue