Skip to content

Commit

Permalink
fix(git-sort): updated the git tags sort command
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasveer authored and Jyasveer Gotta committed Sep 4, 2018
1 parent f94ebf1 commit c5ffad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cico_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function create_merge_PR_vscode {
git pull --tags origin master

# extract version number from latest git tag
new_lsp_server_version=$(git tag --sort=-v:refname | head -1 | cut -d'v' -f 2)
new_lsp_server_version=$(git tag -l | sort -V | head -1 | cut -d'v' -f 2)

# Create PR on fabric8-npm-dependencies and merge it
repo="fabric8-analytics-vscode-extension"
Expand Down

0 comments on commit c5ffad7

Please sign in to comment.