From 9138648296eb127b491f955868f058699edec379 Mon Sep 17 00:00:00 2001 From: Luca Zeug Date: Tue, 27 Sep 2016 09:57:23 +0200 Subject: [PATCH 1/3] [installer] adjust name of installation-folder --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 9085cf6e0..49252e4bc 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -403,6 +403,7 @@ gulp.task('build-dist', ['copy-i18n'], function(cb) { console.log('Bundling platforms: ', options.platform); var appPackageJson = _.extend({}, packJson, { + name: applicationName.replace(/\s+/g, "-"),, productName: applicationName, description: applicationName, homepage: "https://github.com/ethereum/mist", From 8c9bfd3d49bb9b54204f1be3c6cc895c0e2bb208 Mon Sep 17 00:00:00 2001 From: Luca Zeug Date: Tue, 27 Sep 2016 09:58:35 +0200 Subject: [PATCH 2/3] fix typo --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 49252e4bc..7fb3ba7c6 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -403,7 +403,7 @@ gulp.task('build-dist', ['copy-i18n'], function(cb) { console.log('Bundling platforms: ', options.platform); var appPackageJson = _.extend({}, packJson, { - name: applicationName.replace(/\s+/g, "-"),, + name: applicationName.replace(/\s+/g, "-"), productName: applicationName, description: applicationName, homepage: "https://github.com/ethereum/mist", From 920915136280e54c8cbb6faf97f992b43f3dfb4e Mon Sep 17 00:00:00 2001 From: Luca Zeug Date: Tue, 27 Sep 2016 14:52:04 +0200 Subject: [PATCH 3/3] adjust string --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 7fb3ba7c6..e31b44fd8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -403,7 +403,7 @@ gulp.task('build-dist', ['copy-i18n'], function(cb) { console.log('Bundling platforms: ', options.platform); var appPackageJson = _.extend({}, packJson, { - name: applicationName.replace(/\s+/g, "-"), + name: applicationName.replace(/\s/, ''), productName: applicationName, description: applicationName, homepage: "https://github.com/ethereum/mist",