Skip to content

Commit 1dbd11f

Browse files
Mohammad DehghanMohammad Dehghan
Mohammad Dehghan
authored and
Mohammad Dehghan
committed
Fix incorrect path of RuntimeConfig file in controller
1 parent 531da75 commit 1dbd11f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SG.CodeCoverage/Instrumentation/Instrumenter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private IRecordingController CreateRecordingController(InstrumentationMap map)
8181
var dir = Options.RuntimeConfigOutputPath;
8282
if (string.IsNullOrEmpty(dir))
8383
dir = Options.RecorderAssemblyCopyPath;
84-
var fullPath = Path.Combine(dir, Options.RuntimeConfigOutputPath);
84+
var fullPath = Path.Combine(dir, Options.RuntimeConfigFileName);
8585
return new DynamicPortRecordingController(fullPath , map, _logger);
8686
}
8787
}

0 commit comments

Comments
 (0)