I'm trying to upload nuget package to nexus from CMD on Windows. There is this command to upload file:
curl -v -u ${NEXUS_USERNAME}:${NEXUS_PASSWORD} --upload-file ${UPLOAD_FILE} http://${NEXUS_SERVER}/repository/${NEXUS_REPOSITORY}/${UPLOAD_FILE}
This works on Linux, but it didn't work on my Windows machine.
Do you know how to upload nuget file to nexus via CMD?