Skip to content

Commit

Permalink
Fix for major
Browse files Browse the repository at this point in the history
  • Loading branch information
Bechrissed committed Jul 20, 2015
1 parent bd5bdd8 commit 7ed22e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ecommerce-ah-online-navigation",
"version": "0.2.0",
"version": "0.3.0",
"main": "target/war",
"ignore": [
".editorconfig",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ahws-grunt-release",
"description": "Update bower dependencies to the latest tags in git repo",
"version": "0.10.0",
"version": "0.11.0",
"homepage": "https://github.com/ahwswebdev/ahws-grunt-release",
"author": {
"name": "ahwswebdev",
Expand Down
2 changes: 1 addition & 1 deletion tasks/ahws_grunt_release.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module.exports = function (grunt) {
},

getVersion = function (gitRepositoryUrl, currentVersion) {
exec('git ls-remote --tags ' + gitRepositoryUrl + ' | grep -v {} | awk -F\/ \'{printf("%s\\n", $3)}\' | sort -n -t. -k1,1 -k2,2 -k3,3 -k4,4', function (err, stdout) {
exec('git ls-remote --tags ' + gitRepositoryUrl + ' | grep -v {} | awk -F\/ \'{printf("%s\\n", $3)}\' | sort -n -t. -k1,1', function (err, stdout) {
if (err) {
grunt.warn(err);
} else {
Expand Down

0 comments on commit 7ed22e3

Please sign in to comment.