Skip to content

Commit

Permalink
Fix on calcCurrentInfo(). Was incorrectly checking against baseline d…
Browse files Browse the repository at this point in the history
…ate.

JENKINS-51460
  • Loading branch information
jlamasrios committed May 31, 2018
1 parent c5f2cd3 commit 569231e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -362,7 +362,7 @@ private GXSInfo calcCurrentInfo(FilePath workspace, TaskListener listener, GXSCo
// That might happen if after building for revision #42
// the server got back to when the last revision was #41
// (for example by restoring from a backup)
if (!baseDate.before(baseInfo.revisionDate)) {
if (baseDate.before(baseInfo.revisionDate)) {
return baseInfo;
}
}
Expand Down

0 comments on commit 569231e

Please sign in to comment.