mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Merge pull request #543 from Icinga:fix/developer_mode_option_causes_always_cache_reset_while_using_icinga
Fix: icinga command always resetting cache Fixes the `icinga` command which always resets the Framework cache, caused by newly introduced `Developer Mode`
This commit is contained in:
commit
c200cc6f11
1 changed files with 1 additions and 1 deletions
|
|
@ -321,7 +321,7 @@ function Invoke-IcingaCommand()
|
|||
return "> "
|
||||
}
|
||||
|
||||
} -Args $ScriptBlock, $PSScriptRoot, $IcingaFrameworkData.PrivateData.Version, ([bool]$Shell), $ArgumentList, $DeveloperMode;
|
||||
} -Args $ScriptBlock, $PSScriptRoot, $IcingaFrameworkData.PrivateData.Version, ([bool]$Shell), $ArgumentList, ([bool]$DeveloperMode);
|
||||
|
||||
# In case we close the newly created PowerShell, ensure we set the script root back to the Framework folder
|
||||
if (Test-Path $PSScriptRoot) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue