Skip to content

Commit 9b1277c

Browse files
committed
Removed SENZING_DATA_DIR from github workflow for C# darwin
1 parent 21d00d8 commit 9b1277c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Diff for: csharp/runner/SnippetRunner/InstallLocations.cs

+8-7
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,6 @@ private static bool IsDirectory(string path)
222222
+ Environment.OSVersion.Platform);
223223
}
224224

225-
Console.Error.WriteLine();
226-
Console.Error.WriteLine("---------------------------------");
227-
Console.Error.WriteLine("DEFAULT SUPPORT PATH: " + defaultSupportPath);
228-
Console.Error.WriteLine("HOME SUPPORT PATH: " + homeSupport.FullName);
229-
Console.Error.WriteLine("---------------------------------");
230-
Console.Error.WriteLine();
231-
232225
// check for senzing system properties
233226
string? installPath = Environment.GetEnvironmentVariable(
234227
"SENZING_DIR");
@@ -239,6 +232,14 @@ private static bool IsDirectory(string path)
239232
string? resourcePath = Environment.GetEnvironmentVariable(
240233
"SENZING_RESOURCE_DIR");
241234

235+
Console.Error.WriteLine();
236+
Console.Error.WriteLine("---------------------------------");
237+
Console.Error.WriteLine("EXPLICIT SUPPORT PATH: " + supportPath);
238+
Console.Error.WriteLine("DEFAULT SUPPORT PATH: " + defaultSupportPath);
239+
Console.Error.WriteLine("HOME SUPPORT PATH: " + homeSupport.FullName);
240+
Console.Error.WriteLine("---------------------------------");
241+
Console.Error.WriteLine();
242+
242243
// normalize empty strings as null
243244
if (installPath != null && installPath.Trim().Length == 0)
244245
{

0 commit comments

Comments
 (0)