diff --git a/build/tasks/add-nylas-build-resources-task.coffee b/build/tasks/add-nylas-build-resources-task.coffee index 0ca009845..36eb3d944 100644 --- a/build/tasks/add-nylas-build-resources-task.coffee +++ b/build/tasks/add-nylas-build-resources-task.coffee @@ -18,9 +18,10 @@ module.exports = (grunt) -> from = path.join(rootDir, 'packages', plugin) to = path.join(path.resolve('internal_packages'), plugin) - if fs.lstatSync(to) - grunt.log.writeln "Removing old symlink at #{to}" - fs.unlinkSync(to) + try + if fs.lstatSync(to) + grunt.log.writeln "Removing old symlink at #{to}" + fs.unlinkSync(to) grunt.log.writeln "Adding '#{plugin}' to internal_packages" fs.symlinkSync(from, to, 'dir')