1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00

fix file name for openbsd

This commit is contained in:
Darien Raymond 2016-10-17 15:23:45 +02:00
parent 14996da74a
commit 9ae4611eac
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -100,6 +100,14 @@ func getSuffix(os GoOS, arch GoArch) string {
case Arm:
suffix = "-freebsd-arm"
}
case OpenBSD:
switch arch {
case X86:
suffix = "-openbsd-32"
case Amd64:
suffix = "-openbsd-64"
}
}
return suffix
}