From 5b0a6eb384b7cd1918c2c40ab60f7005f1054893 Mon Sep 17 00:00:00 2001 From: Henry Oswald Date: Mon, 15 Aug 2016 13:39:34 +0100 Subject: [PATCH] remove calls to dirs --- Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 5790eacb2a..201f351646 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -70,7 +70,7 @@ module.exports = (grunt) -> "Misc": [ "help" ] - "Install tasks": ("install:#{service.name}" for service in SERVICES).concat(["install:all", "install", "install:dirs"]) + "Install tasks": ("install:#{service.name}" for service in SERVICES).concat(["install:all", "install"]) "Update tasks": ("update:#{service.name}" for service in SERVICES).concat(["update:all", "update"]) "Checks": ["check", "check:redis", "check:latexmk", "check:s3", "check:make"] @@ -85,7 +85,7 @@ module.exports = (grunt) -> grunt.registerTask 'install:all', "Download and set up all ShareLaTeX services", ["check:make"].concat( ("install:#{service.name}" for service in SERVICES) - ).concat([ "install:dirs"]) + ) grunt.registerTask 'install', 'install:all'