We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If i created a publishing credential with a + in the filename, the file cannot be found when trying to use it.
+
> rsconnect::deployApp("myapp") Error in accountInfo(accounts) : account named '[email protected]' does not exist
Pretty sure its because of this code:
rsconnect/R/accounts.R
Lines 441 to 451 in 8c98105
list-files treats pattern as a regular expression where + has special meaning. If the + is double escaped, then it would find the file.
list-files
pattern
The text was updated successfully, but these errors were encountered:
escape an account name before performing recursive directory search
7ccc1b9
fixes #620
71739d9
d7313d9
adjusts cert tests so they do not conflict with the newly added accounts tests. HOME is no longer adjusted. fixes #620
bd0b7c0
Successfully merging a pull request may close this issue.
If i created a publishing credential with a
+
in the filename, the file cannot be found when trying to use it.Pretty sure its because of this code:
rsconnect/R/accounts.R
Lines 441 to 451 in 8c98105
list-files
treatspattern
as a regular expression where + has special meaning. If the + is double escaped, then it would find the file.The text was updated successfully, but these errors were encountered: