ThinkR-open / attachment

Tools to deal with dependencies in scripts, Rmd and packages
https://thinkr-open.github.io/attachment/
Other
108 stars 13 forks source link

new line after cat for cleaner messages #12

Closed cderv closed 5 years ago

cderv commented 5 years ago

Currently, attachement is using cat for printing message. It requires to add new line manually to have several messages print correctly. Example:

> cat("A message");cat("another message\n");cat("a final message", sep = "\n")
A messageanother message
a final message

This PR add those new lines in install_if_missing