Fixed Codestyling

This commit is contained in:
Crited 2019-09-13 16:01:46 +02:00
parent f5a757dc99
commit 0a99db36ef

View file

@ -214,12 +214,12 @@ function Get-IcingaCheckCommandConfig()
'value' = @{ 'value' = @{
'type' = 'Function'; 'type' = 'Function';
'body' = [string]::Format( 'body' = [string]::Format(
'var arr = macro("{0}");{1}if (len(arr) == 0) {2}{1}return "$null";{1}{3}{1}return arr.join(",");', 'var arr = macro("{0}");{1}if (len(arr) == 0) {2}{1}return "$null";{1}{3}{1}return arr.join(",");',
$IcingaCustomVariable, $IcingaCustomVariable,
"`r`n", "`r`n",
'{', '{',
'}' '}'
); );
} }
'order' = $Order; 'order' = $Order;
} }