1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00
This commit is contained in:
V2Ray 2015-10-02 11:05:44 +02:00
parent 79435504f9
commit df963c99ca

View File

@ -5,7 +5,7 @@ GO_X86=https://storage.googleapis.com/golang/go1.5.1.linux-386.tar.gz
ARCH=$(uname -m) ARCH=$(uname -m)
GO_CUR=${GO_AMD64} GO_CUR=${GO_AMD64}
if [ "$ARCH" == "i686" || "$ARCH" == "i386" ]; then if [ "$ARCH" == "i686" ] || [ "$ARCH" == "i386" ]; then
GO_CUR=${GO_X86} GO_CUR=${GO_X86}
fi fi