Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tag_version.sh « lightstep-tracer-go « lightstep « github.com « vendor - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cab1fc577db9a18c0765a7f1eeab68944c927c9 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

VERSION=$(cat ./VERSION)

cat > version.go <<EOF
package lightstep

// TracerVersionValue provides the current version of the lightstep-tracer-go release
const TracerVersionValue = "$VERSION"
EOF