mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 15:19:58 -05:00
12 lines
238 B
PowerShell
12 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);
|
|
}
|