We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello 🙃
First of all, THANK YOU for an amazing project! I was pleasantly surprised by how well it works with all the defaults!
NSIS builder uses ${productName} Setup ${version}.${ext} file name template by default. When it is uploaded to Bintray, the following error occurs:
${productName} Setup ${version}.${ext}
TypeError: Request path contains unescaped characters
Full build log
I have changed artifactName to ${productName}-${version}.${ext} and it was uploaded without problems.
artifactName
${productName}-${version}.${ext}
It seems that file name should be escaped before it is added to request path.
I used:
The text was updated successfully, but these errors were encountered:
It’s a great project 👍👍
Sorry, something went wrong.
fix(deployment): Bintray publisher doesn't escape filename
4b9cf73
Close electron-userland#2600
d0487b0
Please try 20.0.6 (it is next release).
next
Successfully merging a pull request may close this issue.
Hello 🙃
First of all, THANK YOU for an amazing project! I was pleasantly surprised by how well it works with all the defaults!
NSIS builder uses
${productName} Setup ${version}.${ext}
file name template by default. When it is uploaded to Bintray, the following error occurs:Full build log
I have changed
artifactName
to${productName}-${version}.${ext}
and it was uploaded without problems.It seems that file name should be escaped before it is added to request path.
I used:
The text was updated successfully, but these errors were encountered: