fix(version): make the version numbers const

simple fix, thanks to @fmilo in #coreos
This commit is contained in:
Brandon Philips 2013-08-06 16:03:45 -07:00
parent bbdc80274a
commit ab9c0448c9
2 changed files with 2 additions and 2 deletions

View File

@ -4,5 +4,5 @@ VER=$(git describe --tags HEAD)
cat <<EOF
package main
var releaseVersion = "$VER"
const releaseVersion = "$VER"
EOF

View File

@ -1,3 +1,3 @@
package main
var version = "v1"
const version = "v1"