From 51aeb7d46e656b0fa1786b83624ddd7de8031e9c Mon Sep 17 00:00:00 2001
From: lealife <lifephp@gmail.com>
Date: Mon, 23 Nov 2015 10:39:01 +0800
Subject: [PATCH] build support linux-arm

---
 bin/release.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/bin/release.sh b/bin/release.sh
index d7ca1fe..9dc1f57 100644
--- a/bin/release.sh
+++ b/bin/release.sh
@@ -9,7 +9,7 @@ SP=$(cd "$(dirname "$0")"; pwd)
 tmp="/Users/life/Desktop/leanote_release"
 
 # version
-V="v1.2"
+V="v1.4"
 
 ##=================================
 # 1. 先build 成 3个平台, 2种bit = 6种
@@ -37,6 +37,7 @@ function build()
 
 build "linux" "386";
 build "linux" "amd64";
+build "linux" "arm";
 
 build "windows" "386";
 build "windows" "amd64";
@@ -135,6 +136,7 @@ function tarRelease()
 
 tarRelease "linux" "386";
 tarRelease "linux" "amd64";
+tarRelease "linux" "arm";
 
 tarRelease "windows" "386";
 tarRelease "windows" "amd64";