diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-09-20 14:24:16 +0200 |
---|---|---|
committer | Stefan Hoffmann <stefan991@gmail.com> | 2014-09-20 14:24:16 +0200 |
commit | ef3c63f73d9275dcb4fecb43761229a800ea68b9 (patch) | |
tree | 60a7dd36fec95ead844267894a98baadb82efcc0 | |
parent | f9ca9e43c30b08549d92104ed5edf5b131e1ff18 (diff) | |
download | rneovim-ef3c63f73d9275dcb4fecb43761229a800ea68b9.tar.gz rneovim-ef3c63f73d9275dcb4fecb43761229a800ea68b9.tar.bz2 rneovim-ef3c63f73d9275dcb4fecb43761229a800ea68b9.zip |
doc: use `cat` instead of `more` to display errors
`more` may cause the travis build to hang
-rw-r--r-- | runtime/doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 62eb5f17b0..1d9e34d772 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -323,7 +323,7 @@ manpages: $(MANPAGES) # Awk version of .txt to .html conversion. html: noerrors tags $(HTMLS) - @if test -f errors.log; then more errors.log; fi + @if test -f errors.log; then cat errors.log; fi noerrors: -rm -f errors.log |