From 7b11343ea8ee4cd1614bde197c03bb56d0d91a1e Mon Sep 17 00:00:00 2001 From: probablycorey Date: Fri, 27 Jun 2014 09:37:05 -0700 Subject: [PATCH] Remove semi-colon --- build/tasks/publish-build-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/publish-build-task.coffee b/build/tasks/publish-build-task.coffee index 1ec867fb9..f777e16cd 100644 --- a/build/tasks/publish-build-task.coffee +++ b/build/tasks/publish-build-task.coffee @@ -22,7 +22,7 @@ module.exports = (gruntObject) -> return if process.env.JANKY_SHA1 and process.env.JANKY_BRANCH isnt 'master' tasks = ['upload-assets'] tasks.unshift('prepare-docs') if process.platform is 'darwin' - grunt.task.run(tasks); + grunt.task.run(tasks) grunt.registerTask 'prepare-docs', ['build-docs'], -> fs.copySync(grunt.config.get('docsOutputDir'), path.join(grunt.config.get('atom.buildDir'), 'atom-docs'))