mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 14:51:19 -05:00
13 lines
238 B
PowerShell
13 lines
238 B
PowerShell
|
|
function New-IcingaVersionObject()
|
||
|
|
{
|
||
|
|
param (
|
||
|
|
[array]$Version
|
||
|
|
);
|
||
|
|
|
||
|
|
if ($null -eq $Version -Or $Version.Count -gt 4) {
|
||
|
|
return (New-Object System.Version);
|
||
|
|
}
|
||
|
|
|
||
|
|
return (New-Object System.Version $Version);
|
||
|
|
}
|