Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
plietar committed Apr 3, 2024
1 parent 241127a commit 6527497
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/location.R
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ location_pull_metadata <- function(location_name, root, call) {
"Please let us know how this might have happened."),
i = hint_remove),
call)
writeLines(metadata[[i]], filename[[i]], sep="")
writeLines(metadata[[i]], filename[[i]], sep = "")
}
}

Expand Down
2 changes: 1 addition & 1 deletion R/location_path.R
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ location_path_import_metadata <- function(str, hash, root) {
root$files$get(meta$files$hash, dst, TRUE)
}

writeLines(str, file.path(root$path, ".outpack", "metadata", id), sep="")
writeLines(str, file.path(root$path, ".outpack", "metadata", id), sep = "")
time <- Sys.time()
mark_packet_known(id, local, hash, time, root)
}
Expand Down
2 changes: 1 addition & 1 deletion R/outpack_insert.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ outpack_insert_packet <- function(path, json, root = NULL) {
}

path_meta <- file.path(root$path, ".outpack", "metadata", id)
writeLines(json, path_meta, sep="")
writeLines(json, path_meta, sep = "")

## TODO: once we get more flexible remotes, this will get moved into
## its own thing.
Expand Down

0 comments on commit 6527497

Please sign in to comment.