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
A customer reported an issue with the upload, whenever the CLI finds a path in the file.
Path: /path/dir/API Interface/somedir/file.js is failing as Directory <Interface/somedir/file.js> not found
The text was updated successfully, but these errors were encountered:
Parsing of output of the `ls-files` commands was splitting paths with spaces.
It is literally the difference show below.
```python
>>> s = 'string space\nother line\n'
>>> s.split()
['string', 'space', 'other', 'line']
>>> s.split('\n')
['string space', 'other line', '']
```
closes: #356
Parsing of output of the `ls-files` commands was splitting paths with spaces.
It is literally the difference show below.
```python
>>> s = 'string space\nother line\n'
>>> s.split()
['string', 'space', 'other', 'line']
>>> s.split('\n')
['string space', 'other line', '']
```
closes: #356
A customer reported an issue with the upload, whenever the CLI finds a path in the file.
Path:
/path/dir/API Interface/somedir/file.js
is failing asDirectory <Interface/somedir/file.js> not found
The text was updated successfully, but these errors were encountered: