win32ShortcutName -> applicationName

This commit is contained in:
Joao Moreno
2016-02-12 15:18:13 +01:00
parent 82d60a43da
commit d1bccebbd1
2 changed files with 2 additions and 2 deletions

View File

@@ -252,7 +252,7 @@ function packageTask(platform, arch, opts) {
result = es.merge(result, gulp.src('resources/win32/bin/**', { base: 'resources/win32' }))
.pipe(shortcutFilter)
.pipe(rename(function (f) { f.basename = product.win32ShortcutName; }))
.pipe(rename(function (f) { f.basename = product.applicationName; }))
.pipe(shortcutFilter.restore);
}