mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
2442e0d6b6
Summary: Getting rid of things that I'm pretty sure we don't need. Lmk if you see anything to the otherwise. Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1799
13 lines
507 B
CoffeeScript
13 lines
507 B
CoffeeScript
path = require 'path'
|
|
|
|
module.exports = (grunt) ->
|
|
{cp} = require('./task-helpers')(grunt)
|
|
|
|
grunt.registerTask 'copy-info-plist', 'Copy plist', ->
|
|
contentsDir = grunt.config.get('atom.contentsDir')
|
|
plistPath = path.join(contentsDir, 'Info.plist')
|
|
helperPlistPath = path.join(contentsDir, 'Frameworks/Atom Helper.app/Contents/Info.plist')
|
|
|
|
# Copy custom plist files
|
|
cp 'build/resources/mac/nylas-Info.plist', plistPath
|
|
cp 'build/resources/mac/helper-Info.plist', helperPlistPath
|