Skip to content

Commit

Permalink
package-build--list-tags(hg): Do not treat "tip" as a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Dec 13, 2024
1 parent 760cf53 commit e3c1b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ Return (COMMIT-HASH COMMITTER-DATE VERSION-STRING REVDESC TAG) or nil."
(process-lines "git" "tag" "--list"))

(cl-defmethod package-build--list-tags ((_rcp package-hg-recipe))
(process-lines "hg" "tags" "--quiet"))
(delete "tip" (process-lines "hg" "tags" "--quiet")))

(define-obsolete-function-alias 'package-build-get-tag-version
'package-build-tag-version "Package-Build 5.0.0")
Expand Down

0 comments on commit e3c1b80

Please sign in to comment.