Closed Lenostatos closed 3 years ago
Thanks! I am afraid that if we want to make this work on CRAN as well (https://cran.rstudio.com/web/packages/progress/readme/README.html), then we'll have to use absolute links. Or omit the links completely.
I understand. I didn't think of the CRAN version. Should I change the links to absolute links to GitHub? I don't know how to link to the files on CRAN and whether this is possible in the first place (e.g. I tried https://cran.rstudio.com/web/packages/progress/tests/testthat/progresstest/src/test.cpp but got a 404).
Yeah, I think an absolute link as https://github.com/r-lib/progress/blob/HEAD/tests/testthat/progresstest/src/test.cpp
should be fine. Thanks!
Alright, did ti!
Just out of curiosity: Why .../blob/HEAD/...
instead of .../blob/master/...
? Does it make a difference? I tried to google it but couldn't find anything conclusive on the matter.
Thanks! HEAD
will link to the default branch, which is currently master
, but we might change it later.
I see. Thanks!
Fixes #100.