diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-30 17:54:16 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2017-03-30 17:54:16 +0200 |
commit | fec95dfbf0abe4175649e399eb1fcd698d482a9a (patch) | |
tree | 6d9a95ab2b129f5929d92a8851f96af4ec80b911 /GNUmakefile | |
parent | 12a712a7b0cb0f755354f7a1f4e6e2d4c264fd13 (diff) |
Add checkcontrols, updates, see ChangeLog
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7f7e85c..59f3835 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -16,7 +16,10 @@ install: build "$(RBIN)/R" CMD INSTALL $(TGZ) check: build - "$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ) 2>&1 | tee check.log + "$(RBIN)/R" CMD check --as-cran $(TGZ) 2>&1 | tee check.log + +quickcheck: build + "$(RBIN)/R" CMD check $(TGZ) 2>&1 | tee check.log pd: "$(RBIN)/Rscript" -e "pkgdown::build_site()" |