Skip to content

Commit db8c026

Browse files
committed
MatriX.135
1 parent c784c0c commit db8c026

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build-all.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ PLATFORMS=(
1717
'linux/mips64'
1818
'linux/mips64le'
1919
'linux/riscv64'
20-
'linux/riscv'
2120
)
2221

2322
type setopt >/dev/null 2>&1
@@ -65,7 +64,7 @@ swag init -g web/server.go
6564
#### Build server
6665
echo "Build server"
6766
cd "${ROOT}/server" || exit 1
68-
$GOBIN clean -i -r -cache --modcache
67+
$GOBIN clean -i -r -cache # --modcache
6968
$GOBIN mod tidy
7069

7170
BUILD_FLAGS="-ldflags=${LDFLAGS} -tags=nosqlite -trimpath"
@@ -127,3 +126,6 @@ if [[ "${FAILURES}" != "" ]]; then
127126
echo "failed on: ${FAILURES}"
128127
exit 1
129128
fi
129+
130+
cd "${ROOT}/docker/lite" || exit 1
131+
./makedocker.sh

server/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
// "github.com/anacrolix/torrent"
77
)
88

9-
const Version = "MatriX.134"
9+
const Version = "MatriX.135"
1010

1111
func GetTorrentVersion() string {
1212
bi, ok := debug.ReadBuildInfo()

0 commit comments

Comments
 (0)