diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2015-03-27 12:35:06 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2015-03-27 12:35:06 +0900 |
| commit | ce7d4a1c53ef73ad4f02726f6ccf1df1d6a3eb1c (patch) | |
| tree | 23fd13e71c348f51af7e7aabcad5b3739e2fdffc /src/Makefile | |
| parent | 9bba6bd172a0c56b4dfe346d6cd34f94d0b27cde (diff) | |
| download | fzf-ce7d4a1c53ef73ad4f02726f6ccf1df1d6a3eb1c.tar.gz | |
Fix #162 - Ignore \e[K
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 2604c3ba..d833ce98 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ BINDIR := ../bin BINARY32 := fzf-$(GOOS)_386 BINARY64 := fzf-$(GOOS)_amd64 -VERSION = $(shell fzf/$(BINARY64) --version) +VERSION = $(shell fzf/$(BINARY64) --version | sed 's/-p[0-9]*//') RELEASE32 = fzf-$(VERSION)-$(GOOS)_386 RELEASE64 = fzf-$(VERSION)-$(GOOS)_amd64 |
