Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9715 from adobe/ingo/add-buildnumber-to-version
Browse files Browse the repository at this point in the history
Append buildnumber to version to make UpdateNotification check work again
  • Loading branch information
ingorichter committed Oct 28, 2014
2 parents 934a8fa + a02e294 commit 32536dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/update-release-number.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = function (grunt) {
grunt.fail.fatal("Please specify a release. e.g. grunt update-release-number --release=1.1.0");
}

packageJSON.version = release;
packageJSON.version = release + "-0";
packageJSON.apiVersion = release;

common.writeJSON(grunt, path, packageJSON);
Expand Down

0 comments on commit 32536dc

Please sign in to comment.