mirror of
https://github.com/mautrix/telegram.git
synced 2026-05-16 23:15:45 +03:00
5 lines
377 B
Bash
Executable File
5 lines
377 B
Bash
Executable File
#!/bin/sh
|
|
MAUTRIX_VERSION=$(cat go.mod | grep 'maunium.net/go/mautrix ' | awk '{ print $2 }' | head -n1)
|
|
GO_LDFLAGS="-s -w -X main.Tag=$(git describe --exact-match --tags 2>/dev/null) -X main.Commit=$(git rev-parse HEAD) -X 'main.BuildTime=`date -Iseconds`' -X 'maunium.net/go/mautrix.GoModVersion=$MAUTRIX_VERSION'"
|
|
go build -ldflags="$GO_LDFLAGS" ./cmd/mautrix-telegram "$@"
|