Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PSNativeCommandUseErrorActionPreference preference variable #1954

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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