diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-04-07 11:38:05 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-04-07 11:38:05 +0200 |
commit | 8596a3e82235385b5de50cc5a722ccb68247f084 (patch) | |
tree | df17246e512751b361c571e4671842ff4d9bbb72 /GNUmakefile | |
parent | 43d58935483e0d9dda7a74c029e7d7d2adad9ed7 (diff) |
Argument 'legend_x' for 'calplot'
Also, keep check and test logs in the repository.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7992c5e..9eee6b9 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -37,7 +37,7 @@ install: build "$(RBIN)/R" CMD INSTALL $(TGZ) check: build - "$(RBIN)/R" CMD check --as-cran $(TGZ) + "$(RBIN)/R" CMD check --as-cran $(TGZ) 2>&1 | tee check.log vignettes/%.html: vignettes/%.Rmd vignettes/refs.bib "$(RBIN)/Rscript" -e "tools::buildVignette(file = 'vignettes/$*.Rmd', dir = 'vignettes')" @@ -56,7 +56,8 @@ winbuilder: build curl -T $(TGZ) ftp://anonymous@win-builder.r-project.org/R-devel/ test: install - NOT_CRAN=true "$(RBIN)/Rscript" -e 'devtools::test()' + NOT_CRAN=true "$(RBIN)/Rscript" -e 'devtools::test()' 2>&1 | tee test.log + sed -i -e "s/\r.*\r//" test.log clean: $(RM) -r vignettes/*_cache |