Skip to content

Commit cd6da16

Browse files
committed
Treat dev-4.0 same as master in build.cake
1 parent 8d5c9a9 commit cd6da16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Setup(context =>
9595
var branch = AppVeyor.Environment.Repository.Branch;
9696
var isPullRequest = AppVeyor.Environment.PullRequest.IsPullRequest;
9797

98-
if (branch == "master" && !isPullRequest)
98+
if ((branch == "master" || branch == "dev-4.0") && !isPullRequest)
9999
{
100100
productVersion = version + "-dev-" + buildNumber;
101101
}

0 commit comments

Comments
 (0)