Hi,
we have a problem similar to #1
running upload on jenkins on linux platform. Altough /dev/stderr is available on linux, for some reason the jenkins worker has no access to it.
The error looks like Warning: Failed to create the file /dev/stderr: No such device or address curl: (23) Failed writing received data to disk/application
Then the upload fails..
Suggestion: add optional parameter like curlOutput which could have following values:
- undefined - will fallback to /dev/stderr
- null - no output redirection in curl (this would be similar to current "isWin" condition and this could eventually be removed)
- string - e.g. '/dev/null'
In case you agree with the change, I could open a PR with the change..
Hi,
we have a problem similar to #1
running upload on jenkins on linux platform. Altough /dev/stderr is available on linux, for some reason the jenkins worker has no access to it.
The error looks like
Warning: Failed to create the file /dev/stderr: No such device or address curl: (23) Failed writing received data to disk/applicationThen the upload fails..
Suggestion: add optional parameter like
curlOutputwhich could have following values:In case you agree with the change, I could open a PR with the change..