diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-02 13:03:09 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2015-10-02 13:03:09 +0200 |
commit | d1fe83f2f1a9c0d775b0dc8f18301a8bbb454077 (patch) | |
tree | f380f42d519e07e96621bbf4e1e32e57084aa34c | |
parent | a55e8771b18ba65f419974e7964219479ab9a632 (diff) |
Remove --as-cran from make check as we do not submit to CRAN yet
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index b582462..af98dbe 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -50,11 +50,11 @@ install-no-vignettes: build-no-vignettes check: build # Vignettes have been rebuilt by the build target - "$(RBIN)/R" CMD check --as-cran --no-tests --no-build-vignettes $(TGZ) + "$(RBIN)/R" CMD check --no-tests --no-build-vignettes $(TGZ) check-no-vignettes: build-no-vignettes mv $(TGZVNR) $(TGZ) - "$(RBIN)/R" CMD check --as-cran --no-tests $(TGZ) + "$(RBIN)/R" CMD check --no-tests $(TGZ) mv $(TGZ) $(TGZVNR) README.html: README.md |