The email() function called by release() fails silently under Rstudio on mac. This happens because
# regular R mac gui
> options('browser')
$browser
[1] "/usr/bin/open"
# rstudio
> options('browser')
$browser
function (url)
{
.Call("rs_browseURL", url)
}
<environment: 0x1020ca470>
I guess one possible fix would be to temporarily override the browser option inside email() with "/usr/bin/open" on mac.
The email() function called by release() fails silently under Rstudio on mac. This happens because
I guess one possible fix would be to temporarily override the browser option inside email() with "/usr/bin/open" on mac.
https://github.com/hadley/devtools/blob/21cc4a6689bce3531daa3e295cf676a035af769c/R/release.r#L148-L159