Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4461,7 +4461,7 @@ private bool GetListOfFilesFromData(
{
// The ps1xml file no longer exists in $PSHOME. Downstream, we expect a resolved path,
// which we can't really do b/c the file doesn't exist.
fixedFileName = psHome + "\\" + Path.GetFileName(s);
fixedFileName = Path.Combine(psHome, Path.GetFileName(s));
}
else if (verifyFilesExist && !File.Exists(fixedFileName))
{
Expand Down
Loading