File tree 1 file changed +8
-7
lines changed
csharp/runner/SnippetRunner
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -222,13 +222,6 @@ private static bool IsDirectory(string path)
222
222
+ Environment . OSVersion . Platform ) ;
223
223
}
224
224
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
-
232
225
// check for senzing system properties
233
226
string ? installPath = Environment . GetEnvironmentVariable (
234
227
"SENZING_DIR" ) ;
@@ -239,6 +232,14 @@ private static bool IsDirectory(string path)
239
232
string ? resourcePath = Environment . GetEnvironmentVariable (
240
233
"SENZING_RESOURCE_DIR" ) ;
241
234
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
+
242
243
// normalize empty strings as null
243
244
if ( installPath != null && installPath . Trim ( ) . Length == 0 )
244
245
{
You can’t perform that action at this time.
0 commit comments