Skip to content

Commit 92fb63b

Browse files
committed
fix lookup path for binlogs
1 parent af4ddb4 commit 92fb63b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.NET.ToolPack.Tests/GivenThatWeWantToPackAToolProjectWithPackagedShim.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public void It_uses_customized_PackagedShimOutputRootDirectory(bool multiTarget,
160160
var result = packCommand.Execute("-bl:{}");
161161
if (Environment.GetEnvironmentVariable("HELIX_WORKITEM_UPLOAD_ROOT") is string uploadRoot)
162162
{
163-
var binlogFiles = Directory.GetFiles(helloWorldAsset.TestRoot, "*.binlog");
163+
var binlogFiles = Directory.GetFiles(Environment.CurrentDirectory, "*.binlog");
164164
foreach (string binlogFile in binlogFiles)
165165
{
166166
File.Copy(binlogFile, Path.Combine(uploadRoot, Path.GetFileName(binlogFile)), true);

0 commit comments

Comments
 (0)