1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-02-03 23:14:17 +00:00

update .gobulid.yml

This commit is contained in:
codeskyblue 2014-09-28 16:37:58 +08:00
parent 3598c1435e
commit 9ce0bd043c

View file

@ -13,5 +13,10 @@ filesets:
- \.git
settings:
build: |
go get -u -tags "sqlite redis memecache" github.com/gogits/gogs
go install -tags "sqlite redis memecache"
if test "$GOOS" = "windows" -a "$GOARCH" = "386"
then
go install -v
else
go get -v -tags "sqlite redis memecache" github.com/gogits/gogs
go install -v -tags "sqlite redis memecache"
fi