mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 15:46:28 +08:00
fix(date): copyright year auto-updates
This commit is contained in:
parent
141b2e73c9
commit
d3d2bd35ec
1 changed files with 2 additions and 1 deletions
|
@ -45,10 +45,11 @@ module.exports = (grunt) ->
|
||||||
shellAppDir = grunt.config.get('nylasGruntConfig.shellAppDir')
|
shellAppDir = grunt.config.get('nylasGruntConfig.shellAppDir')
|
||||||
shellExePath = path.join(shellAppDir, 'nylas.exe')
|
shellExePath = path.join(shellAppDir, 'nylas.exe')
|
||||||
|
|
||||||
|
year = new Date().getFullYear()
|
||||||
strings =
|
strings =
|
||||||
CompanyName: 'Nylas, Inc.'
|
CompanyName: 'Nylas, Inc.'
|
||||||
FileDescription: 'Nylas'
|
FileDescription: 'Nylas'
|
||||||
LegalCopyright: 'Copyright (C) 2014-2015 Nylas, Inc. All rights reserved'
|
LegalCopyright: "Copyright (C) 2014-#{year} Nylas, Inc. All rights reserved"
|
||||||
ProductName: 'Nylas'
|
ProductName: 'Nylas'
|
||||||
ProductVersion: version
|
ProductVersion: version
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue