We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2130b2 commit 20d6042Copy full SHA for 20d6042
src/install.libs.R
@@ -8,15 +8,15 @@
8
dir.create(dest, recursive = TRUE, showWarnings = FALSE)
9
file.copy(files, dest, overwrite = TRUE)
10
11
+ # copy symbols if available
12
+ if (file.exists("symbols.rds"))
13
+ file.copy("symbols.rds", dest, overwrite = TRUE)
14
+
15
# also copy to package 'libs' folder, for devtools
16
dest <- paste0("../libs", R_ARCH)
17
18
19
- # copy symbols if available
- if (file.exists("symbols.rds"))
- file.copy("symbols.rds", dest, overwrite = TRUE)
-
20
# copy tbb
21
# TODO: use 'dest' library directory once rstan is updated
22
tbbDest <- paste0("../inst/lib", R_ARCH)
0 commit comments