We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1b02d commit 956594cCopy full SHA for 956594c
Engine/SpecialVars.cs
@@ -164,6 +164,7 @@ internal enum PreferenceVariable
164
internal const string Null = "null";
165
internal const string True = "true";
166
internal const string False = "false";
167
+ internal const string LastExitCode = "LastExitCode";
168
169
internal static readonly string[] OtherInitializedVariables = new string[]
170
{
@@ -184,7 +185,8 @@ internal enum PreferenceVariable
184
185
pwd,
186
Null,
187
True,
- False
188
+ False,
189
+ LastExitCode
190
};
191
192
}
0 commit comments