gRAN
gRAN copied to clipboard
GRANonGRAN() tries to copy non-existent files
In the function GRANonGRAN()
the following lines fail:
res = file.copy(system.file("GRAN", package="GRANBase"),
normalizePath2(repobase(repo)), recursive=TRUE,
overwrite=TRUE)
if(any(!res))
stop("copy failed")
The reason is that the file "GRAN" doesn't seem to exist in GRANbase
system.file("GRAN", package="GRANBase")
[1] ""
Should this line refer to a different folder?
@andrie This is because that directory is created by the configure script, which I strongly suspect doesn't currently work under windows. I will look at created a config.win script so that this will work.
Thanks