mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 12:32:31 +01:00
Rename package for handling <default branch>
This commit is contained in:
parent
b6ed048f94
commit
be0b0055f1
17
rename.ps1
Normal file
17
rename.ps1
Normal 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"
|
Loading…
Reference in New Issue
Block a user