Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
5 lines (5 sloc) 228 Bytes
path_reduce <- function(src) {
src <- gsub(normalizePath(getwd(),winslash = '/'), ".", src)
src <- gsub(normalizePath(tempdir(),winslash = '/'), ".", src)
gsub(dirname(normalizePath(tempdir(),winslash = '/')), ".", src)
}
You can’t perform that action at this time.