Skip to content

Commit

Permalink
fix(nsis): allow use dot in the productName
Browse files Browse the repository at this point in the history
  • Loading branch information
develar committed Jan 30, 2018
1 parent 879975e commit a7a81b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class NsisTarget extends Target {
APP_GUID: guid,
PRODUCT_NAME: appInfo.productName,
PRODUCT_FILENAME: appInfo.productFilename,
APP_FILENAME: (!oneClick || options.perMachine === true) && /^[-_+0-9a-zA-Z ]+$/.test(appInfo.productFilename) ? appInfo.productFilename : appInfo.sanitizedName,
APP_FILENAME: (!oneClick || options.perMachine === true) && /^[-_+0-9a-zA-Z .]+$/.test(appInfo.productFilename) ? appInfo.productFilename : appInfo.sanitizedName,
APP_DESCRIPTION: appInfo.description,
VERSION: appInfo.version,

Expand Down

0 comments on commit a7a81b4

Please sign in to comment.