Remove spaces from windows installer name

Spaces in the file name get escaped to %20. Then the percent sign gets
escaped again on the way to s3 upload, such that the object name on s3
ends up as %2520. To fix this, we can simply omit spaces from our
artifact names.

// FREEBIE
pull/749/head
lilia 8 years ago committed by Scott Nonnenberg
parent 5650748961
commit 81a40bb548
No known key found for this signature in database
GPG Key ID: A4931C09644C654B

@ -51,6 +51,7 @@
}
},
"win": {
"artifactName": "${productName}-Setup_${version}.${ext}",
"publish": {
"provider": "s3",
"region": "us-east-1",

Loading…
Cancel
Save