1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

added porting guide for PowerShell EAP changes (#46451)

This commit is contained in:
Jordan Borean 2018-10-05 05:32:17 +10:00 committed by Sandra McCann
parent bcfdc37be0
commit b570af020c

View file

@ -58,6 +58,12 @@ Modules
Major changes in popular modules are detailed here
The exec wrapper that runs PowerShell modules has been changed to set ``$ErrorActionPreference = "Stop"`` globally.
This may mean that custom modules can fail if they implicitly relied on this behaviour. To get the old behaviour back,
add ``$ErrorActionPreference = "Continue"`` to the top of the module. This change was made to restore the old behaviour
of the EAP that was accidentally removed in a previous release and ensure that modules are more resiliant to errors
that may occur in execution.
Modules removed
---------------