vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit ca7f3f2823178bb414a6eb1855052d51daefdfb8 parent f5fe42686c4407798257811a94fabfa4462e61d2 Author: Marc André Tanner <mat@brain-dump.org> Date: Tue, 6 Oct 2015 09:12:27 +0200 Change release tarball compression to gzip Diffstat:
| M | Makefile | | | 2 | +- |
| M | config.mk | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -51,6 +51,6 @@ uninstall: @rm -f ${DESTDIR}${MANPREFIX}/man1/vis.1 release: - git archive --format=tar.xz --prefix=vis-$(RELEASE)/ $(RELEASE) > vis-$(RELEASE).tar.xz + @git archive --prefix=vis-$(RELEASE)/ -o vis-$(RELEASE).tar.gz $(RELEASE) .PHONY: all clean dist install uninstall debug diff --git a/config.mk b/config.mk @@ -3,7 +3,7 @@ HAVE_ACL=0 HAVE_SELINUX=0 # vis version -RELEASE = 0.0.0 +RELEASE = HEAD # try to get a tag and hash first GITHASH = $(shell git log -1 --format='%h' 2>/dev/null) GITTAG = $(shell git describe --abbrev=0 --tags 2>/dev/null)