Skip to content

Commit

Permalink
fix issue with release build on VSO
Browse files Browse the repository at this point in the history
  • Loading branch information
analogrelay committed Nov 16, 2015
1 parent d0f4091 commit 6e3ade1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/compile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ Download it from https://www.cmake.org
mkdir $HostDir | Out-Null
}
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.exe" $HostDir
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb" $HostDir

if (Test-Path "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb")
{
cp "$RepoRoot\src\corehost\cmake\$Rid\$Configuration\corehost.pdb" $HostDir
}
} finally {
popd
}
Expand Down

0 comments on commit 6e3ade1

Please sign in to comment.