Skip to content

Commit

Permalink
Merge pull request #179 from ydubreuil/fix-JENKINS-20561
Browse files Browse the repository at this point in the history
[FIXED JENKINS-20561] fix migration of skipTag property for job using configuration format version 1
  • Loading branch information
ndeloof committed Nov 13, 2013
2 parents 1e894cd + 45fc32a commit cba4ddc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -193,7 +193,7 @@ void readBackExtensionsFromLegacy() {
addIfMissing(new RelativeTargetDirectory(relativeTargetDir));
relativeTargetDir = null;
}
if (skipTag!=null && skipTag) {
if (skipTag!=null && !skipTag) {
addIfMissing(new PerBuildTag());
skipTag = null;
}
Expand Down

0 comments on commit cba4ddc

Please sign in to comment.