mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 14:10:12 +01:00
5 lines
155 B
Bash
5 lines
155 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
VERSION=$(git describe)
|
||
|
|
echo "Building $VERSION..."
|
||
|
|
go build -o watchtower -ldflags "-X github.com/containrrr/watchtower/cmd.version=$VERSION"
|