We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d31de commit 70e6cb8Copy full SHA for 70e6cb8
ChangeLog
@@ -1,3 +1,8 @@
1
+2014-06-29 JJ Allaire <jj@rstudio.org>
2
+
3
+ * R/Attributes.R: fix setwd problem when sourceCpp used a
4
+ relative path and included an R code chunk
5
6
2014-06-20 Dirk Eddelbuettel <edd@debian.org>
7
8
* include/Rcpp/sugar/functions/ifelse.h: Applied pull request #150 by
R/Attributes.R
@@ -34,7 +34,7 @@ sourceCpp <- function(file = "",
34
writeLines(code, con)
35
close(con)
36
} else {
37
- rWorkingDir <- dirname(file)
+ rWorkingDir <- normalizePath(dirname(file))
38
}
39
40
# resolve the file path
0 commit comments