1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

[appveyor] this versioning sure isn't intuitive...

This commit is contained in:
Pete Batard 2016-08-06 19:04:34 +02:00
parent b808b67769
commit 19536ddd1a
2 changed files with 10 additions and 9 deletions

View file

@ -1,12 +1,13 @@
version: avb{build}
os: Visual Studio 2015
init:
- ps: >-
if ($env:appveyor_repo_tag -eq "true") {
if ($env:appveyor_repo_tag -eq "true")
{
Update-AppveyorBuild -Version "$env:appveyor_repo_tag_name"
} else {
}
else
{
Update-AppveyorBuild -Version "dev-$($env:appveyor_repo_commit.substring(0,7))"
}