Skip to content

Commit b948886

Browse files
committed
Update build-githubpage.R
1 parent e0ff8e7 commit b948886

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/build-githubpage.R

+14-1
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,28 @@ const clr_modules = ["REnv.dll" "Rlapack.dll" "roxygenNet.dll" "Rserve.dll" "Rse
1010
"devkit.dll" "graphics.dll" "igraph.dll" "MLkit.dll" "njl.dll"
1111
"npy.dll" "nts.dll" "Parallel.dll" "RData.dll"];
1212

13+
const index = list();
14+
1315
for(dll_name in clr_modules) {
16+
let libs = [];
17+
1418
str(dll_name);
1519

1620
# generates the html help documents
1721
for(pkg_namespace in package_utils::parseDll(dll = `${app_dir}/${dll_name}`)) {
22+
const libname = [pkg_namespace]::namespace;
23+
1824
try({
1925
Rdocuments(pkg_namespace,
20-
outputdir = `${vignettes}/${basename(dll_name)}/${[pkg_namespace]::namespace}`,
26+
outputdir = `${vignettes}/${basename(dll_name)}/${libname}`,
2127
package = "R");
28+
libs = append(libs, libname);
2229
});
2330
}
31+
32+
index[[basename(dll_name)]] = libs;
33+
34+
NULL;
2435
}
36+
37+
str(index);

0 commit comments

Comments
 (0)