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
fix(dotcli): Fix error when pulling folder with parentheses (#32258)
### **Problem**
The code was getting the folder as an asset when it had parentheses or a
special character on the name, because it was trying to do a replace on
the name with the `replaceFirst` function, which handles the first
argument as a regex, so as the name has a special character (in this
scenario parentheses), it was recognizing it as a regex which led to be
treated as an asset, and finally throwing `Asset not found error`
### **Fix**
`Pattern.quote` was added to handle the string as literal
0 commit comments