We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a77dd92 commit 9df4b08Copy full SHA for 9df4b08
src/ModularPipelines.Build/ReleaseNotes.md
@@ -0,0 +1 @@
1
+- Fix a bug where Folder.GetFiles(string globPattern) was returning the wrong relative paths
src/ModularPipelines/FileSystem/Folder.cs
@@ -141,7 +141,7 @@ public IEnumerable<File> GetFiles(string globPattern)
141
.AddInclude(globPattern)
142
.Execute(new DirectoryInfoWrapper(DirectoryInfo))
143
.Files
144
- .Select(x => new File(x.Path))
+ .Select(x => new File(System.IO.Path.Combine(this, x.Path)))
145
.Distinct();
146
}
147
0 commit comments