From 81a40bb548b5060f2da9051e71e0120e888794f4 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 6 Apr 2017 17:28:39 -0700 Subject: [PATCH] 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 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 2d65a50a5..ee2396850 100644 --- a/package.json +++ b/package.json @@ -51,6 +51,7 @@ } }, "win": { + "artifactName": "${productName}-Setup_${version}.${ext}", "publish": { "provider": "s3", "region": "us-east-1",