prepare to release 2.6

This commit is contained in:
lealife
2017-12-01 10:25:24 +08:00
parent d77e636e53
commit c084792d32
2 changed files with 3 additions and 5 deletions

View File

@ -606,5 +606,5 @@ func (this *ConfigService) HomePageIsAdminsBlog() bool {
} }
func (this *ConfigService) GetVersion() string { func (this *ConfigService) GetVersion() string {
return "2.5" return "2.6"
} }

View File

@ -9,7 +9,7 @@ SP=$(cd "$(dirname "$0")"; pwd)
tmp="/Users/life/Desktop/leanote_release" tmp="/Users/life/Desktop/leanote_release"
# version # version
V="v2.5" V="v2.6"
##================================= ##=================================
# 1. 先build 成 3个平台, 2种bit = 6种 # 1. 先build 成 3个平台, 2种bit = 6种
@ -32,7 +32,7 @@ function build()
suffix=".exe" suffix=".exe"
fi fi
GOOS=$1 GOARCH=$2 go build -o leanote-$1-$2$suffix ../app/tmp GOOS=$1 GOARCH=$2 go build -o leanote-$1-$2$suffix github.com/leanote/leanote/app/tmp
} }
build "linux" "386"; build "linux" "386";
@ -42,7 +42,6 @@ build "linux" "arm";
build "windows" "386"; build "windows" "386";
build "windows" "amd64"; build "windows" "amd64";
# build "darwin" "386";
build "darwin" "amd64"; build "darwin" "amd64";
@ -146,7 +145,6 @@ tarRelease "linux" "arm";
tarRelease "windows" "386"; tarRelease "windows" "386";
tarRelease "windows" "amd64"; tarRelease "windows" "amd64";
# tarRelease "darwin" "386";
tarRelease "darwin" "amd64"; tarRelease "darwin" "amd64";
# BLOCK' # BLOCK'