Rename package for handling <default branch>

This commit is contained in:
Mark McDowall 2013-02-15 17:59:20 -06:00
parent b6ed048f94
commit be0b0055f1
1 changed files with 17 additions and 0 deletions

17
rename.ps1 Normal file
View File

@ -0,0 +1,17 @@
Param(
[Parameter(Mandatory=$true, Position=0, HelpMessage="A branch name is #requires required")]
[string]$branch,
[Parameter(Mandatory=$true, Position=1, HelpMessage="A version is required")]
[string]$version
)
if ($branch -eq "<default branch>")
{
$branch = "teamcity";
}
Write-Host $branch;
Write-Host $version;
Write-Host "NzbDrone.$branch.$version.zip";
Rename-Item "nzbdrone.zip" "NzbDrone.$branch.$version.zip"