MatriX.135

This commit is contained in:
YouROK
2025-04-25 16:44:28 +03:00
parent c784c0c908
commit db8c0268a5
2 changed files with 5 additions and 3 deletions

View File

@@ -17,7 +17,6 @@ PLATFORMS=(
'linux/mips64'
'linux/mips64le'
'linux/riscv64'
'linux/riscv'
)
type setopt >/dev/null 2>&1
@@ -65,7 +64,7 @@ swag init -g web/server.go
#### Build server
echo "Build server"
cd "${ROOT}/server" || exit 1
$GOBIN clean -i -r -cache --modcache
$GOBIN clean -i -r -cache # --modcache
$GOBIN mod tidy
BUILD_FLAGS="-ldflags=${LDFLAGS} -tags=nosqlite -trimpath"
@@ -127,3 +126,6 @@ if [[ "${FAILURES}" != "" ]]; then
echo "failed on: ${FAILURES}"
exit 1
fi
cd "${ROOT}/docker/lite" || exit 1
./makedocker.sh

View File

@@ -6,7 +6,7 @@ import (
// "github.com/anacrolix/torrent"
)
const Version = "MatriX.134"
const Version = "MatriX.135"
func GetTorrentVersion() string {
bi, ok := debug.ReadBuildInfo()