Versions are hard

This commit is contained in:
RogueException
2017-01-25 18:00:00 -04:00
parent 7e9491fb34
commit b0db37cad6
12 changed files with 24 additions and 45 deletions

5
init.ps1 Normal file
View File

@@ -0,0 +1,5 @@
if (Test-Path Env:\APPVEYOR_BUILD_NUMBER) {
$env:BUILD = "rc-$($env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0"))"
} else {
$env:BUILD = "dev"
}