Re: [Rd] tryCatch without handler in QC.R

2020-03-10 Thread suharto_anggono--- via R-devel
Sorry, it is already fixed. Currently, it is as follows. bad <- tryCatch(check_url_db(udb), error = identity) On Tuesday, 10 March 2020, 11:53:16 pm GMT+7, wrote: The following is among those added by r77792 to src/library/tools/R/QC.R in R devel.                 bad <- tryCatch(check_url_d

[Rd] tryCatch without handler in QC.R

2020-03-10 Thread suharto_anggono--- via R-devel
The following is among those added by r77792 to src/library/tools/R/QC.R in R devel. bad <- tryCatch(check_url_db(udb)) The 'tryCatch' has no handler. It does nothing. Error would still stop execution. __ R-devel@r-project.org mailing

Re: [Rd] R CMD INSTALL cannot recognize full path on Windows

2020-03-10 Thread Wang Jiefei
Oops, I think both of us forget to cite the r-devel channel. Best, Jiefei On Tue, Mar 10, 2020 at 5:13 AM Wang Jiefei wrote: > Thanks for your quick response, Tomas. > > Yes, this is a path issue, I think the problem is related to R, not the > Rtools make. I built an example package for repro

[Rd] R CMD INSTALL cannot recognize full path on Windows

2020-03-10 Thread Wang Jiefei
Hi all, Here is a bug(or feature?) that exists at least from R 2020-02-24 r77852 to 2020-03-09 r77919 on Window. Consider this example makefile in a package ``` *test1=$(shell echo 'runif(3)'|R --vanilla --slave)test2=$(shell echo 'runif(3)'|"C:/Program Files/R/R-devel/bin/R" --vanilla --sla