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 7133576 commit 4c8f06bCopy full SHA for 4c8f06b
build/utils/paths.cake
@@ -46,6 +46,9 @@ public class BuildPaths
46
47
var vsixSuffix = parameters.IsStableRelease() ? "" : "preview-";
48
var vsixOutputFilePath = buildArtifactDir.CombineWithFilePath("gittools.gitversion-" + vsixSuffix + version.VsixVersion + ".vsix");
49
+ if (vsixOutputFilePath == null) {
50
+ vsixOutputFilePath = context.GetFiles(buildArtifactDir + "/*.vsix").First();
51
+ }
52
53
// Directories
54
var buildDirectories = new BuildDirectories(
0 commit comments