mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
have LATEST-notmuch-<version>.tar.gz on releases web page
The notmuchmail/releases page used to have LATEST-notmuch-<version> to link to the latest notmuch source tarball. This is confusing on web page and on disk when the file has been downloaded. This change looks a bit inconsistent with the 'rm' command just executed before. $(TAR_FILE) is defined (currently) as $(PACKAGE)-$(VERSION).tar.gz; as long as the prefix stays $(PACKAGE)-$(VERSION) and version begins with a digit then this line is good in execution point of view.
This commit is contained in:
parent
7bf1f6e85a
commit
fc622d7e06
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ release: verify-source-tree-and-version
|
||||||
ifeq ($(REALLY_UPLOAD),yes)
|
ifeq ($(REALLY_UPLOAD),yes)
|
||||||
git push origin $(VERSION)
|
git push origin $(VERSION)
|
||||||
cd releases && scp $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) $(RELEASE_HOST):$(RELEASE_DIR)
|
cd releases && scp $(TAR_FILE) $(SHA1_FILE) $(GPG_FILE) $(RELEASE_HOST):$(RELEASE_DIR)
|
||||||
ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* ; ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(PACKAGE)-$(VERSION)"
|
ssh $(RELEASE_HOST) "rm -f $(RELEASE_DIR)/LATEST-$(PACKAGE)-[0-9]* ; ln -s $(TAR_FILE) $(RELEASE_DIR)/LATEST-$(TAR_FILE)"
|
||||||
endif
|
endif
|
||||||
@echo "Please send a release announcement using $(PACKAGE)-$(VERSION).announce as a template."
|
@echo "Please send a release announcement using $(PACKAGE)-$(VERSION).announce as a template."
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue