You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure what the best way to fix this is. The easiest is just to drop the \b from the regex but I'm not entirely sure why it was added in the first place (I'm assuming it was to catch some edge case).
The text was updated successfully, but these errors were encountered:
When using the
config:set
command with a value that contains a hash and an array, such as:The regex in scripts/heroku-commands.js#L235 doesn't match up on the last 3 characters, resulting in a broken config setting.
But if I wrap it up in double quotes:
Its OK, since the matches on
\b
.I'm not sure what the best way to fix this is. The easiest is just to drop the
\b
from the regex but I'm not entirely sure why it was added in the first place (I'm assuming it was to catch some edge case).The text was updated successfully, but these errors were encountered: