mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00
9 lines
247 B
Bash
Executable file
9 lines
247 B
Bash
Executable file
#!/bin/bash
|
|
|
|
BINFILE=watchtower
|
|
if [ -n "$MSYSTEM" ]; then
|
|
BINFILE=watchtower.exe
|
|
fi
|
|
VERSION=$(git describe --tags)
|
|
echo "Building $VERSION..."
|
|
go build -o $BINFILE -ldflags "-X github.com/containrrr/watchtower/internal/meta.Version=$VERSION"
|