https://github.com/etcd-io/etcd
Raw File
Tip revision: e77b9aa020a2041a0f88459a4d82f236517dff09 authored by Brandon Philips on 10 October 2013, 22:28:19 UTC
fix(mod/dashboard): bump the resources
Tip revision: e77b9aa
release-version
#!/bin/sh

VER=$(git describe --tags HEAD)

cat <<EOF
package main
const releaseVersion = "$VER"
EOF
back to top