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
This line is preventing files from being uploaded to the proper nexus path when running in windows environment: api/repository/upload.py 22 dst_dir = os.path.normpath(dst_dir or REMOTE_PATH_SEPARATOR)
Removing this line yields expected results, but recognize this line was introduced with b2f1321
uploaded file will get uploaded but does not upload to a directory:
In nexus the component group is created as
/my_root \ environ \ component
instead of
/my_root / environ / component (which is what get's created when you upload a component directly in nexus)
The text was updated successfully, but these errors were encountered:
This line is preventing files from being uploaded to the proper nexus path when running in windows environment: api/repository/upload.py
22 dst_dir = os.path.normpath(dst_dir or REMOTE_PATH_SEPARATOR)
Removing this line yields expected results, but recognize this line was introduced with b2f1321
To re-create this issue:
uploaded file will get uploaded but does not upload to a directory:
In nexus the component group is created as
/my_root \ environ \ component
instead of
/my_root / environ / component (which is what get's created when you upload a component directly in nexus)
The text was updated successfully, but these errors were encountered: