Skip to content

Commit

Permalink
Add PSNativeCommandUseErrorActionPreference preference variable (#1954)
Browse files Browse the repository at this point in the history
  • Loading branch information
aelij authored Jan 16, 2024
1 parent e22c65f commit 59190fe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Engine/SpecialVars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ static SpecialVars()
internal const string ProgressPreference = "ProgressPreference";
internal const string InformationPreference = "InformationPreference";
internal const string ErrorView = "ErrorView";
internal const string PSNativeCommandUseErrorActionPreference = "PSNativeCommandUseErrorActionPreference";

internal static readonly string[] PreferenceVariables = new string[]
{
Expand All @@ -103,7 +104,8 @@ static SpecialVars()
ConfirmPreference,
ProgressPreference,
InformationPreference,
ErrorView
ErrorView,
PSNativeCommandUseErrorActionPreference,
};

internal static readonly Type[] PreferenceVariableTypes = new Type[]
Expand All @@ -117,6 +119,7 @@ static SpecialVars()
/* ProgressPreference */ typeof(Enum),
/* InformationPreference */ typeof(ActionPreference),
/* ErrorView */ typeof(Enum), //ErrorView type not available on PS3
/* PSNativeCommandUseErrorActionPreference */ typeof(bool),
};

internal enum AutomaticVariable
Expand Down

0 comments on commit 59190fe

Please sign in to comment.