Skip to content

Commit

Permalink
Wf: remove trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Oct 6, 2024
1 parent 73116ac commit 4f701b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/Wf.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Wf <- R6::R6Class(
"sash"
)
assertthat::assert_that(wname %in% wnames)
self$path <- path
self$path <- sub("/$", "", path) # remove potential trailing slash
self$wname <- wname
self$filesystem <- dplyr::case_when(
grepl("^gds://", path) ~ "gds",
Expand Down

0 comments on commit 4f701b6

Please sign in to comment.