Skip to content

Commit

Permalink
Fixed the truly freaking finickiest command (git tag for release notes.)
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed May 3, 2019
1 parent f6928ab commit e3d35ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ protected function getChangesOnBranchSinceTag($prev_tag) {
protected function getLastTagOnBranch($current_branch) {
// List all tags, sort numerically, and filter out any that aren't numeric.
$output = $this->taskExecStack()
->exec("git tag --sort=-v:refname --merged $current_branch | sed '/^[[:alpha:]]/d'")
->exec("git -c 'versionsort.suffix=-' tag --sort=-v:refname --merged $current_branch | sed '/^[[:alpha:]]/d'")
->interactive(FALSE)
->silent(TRUE)
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
Expand Down

0 comments on commit e3d35ec

Please sign in to comment.