Skip to content

Commit c1ef004

Browse files
committed
CLI: css.exe default print out now saying <not set> instead of <not integrated> for the InstallationDir field. It's not really about the integration but setting the CSSCRIPT_ROOT envar.
1 parent 671664b commit c1ef004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cscs/HelpProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2201,7 +2201,7 @@ public static string BuildVersionInfo(string arg)
22012201
.AppendLine(" System: " + OSVersion)
22022202
.AppendLine(" Architecture: " + (Is64BitProcess ? "x64" : "x86"));
22032203
if (Runtime.IsWin)
2204-
builder.AppendLine(" Install dir: " + (GetEnvironmentVariable("CSSCRIPT_INSTALLED") ?? "<not integrated>"));
2204+
builder.AppendLine(" Install dir: " + (GetEnvironmentVariable("CSSCRIPT_INSTALLED") ?? "<not set>"));
22052205

22062206
var asm_path = Assembly.GetExecutingAssembly().Location;
22072207
try

0 commit comments

Comments
 (0)