From 689092e93aee64242260c0d8df767f381b503d99 Mon Sep 17 00:00:00 2001 From: Grayside Date: Thu, 23 Jul 2015 22:48:34 -0700 Subject: [PATCH] #181: Fixed pluralization inconsistency in themes proxying. --- tasks/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/theme.js b/tasks/theme.js index 5bde2d5d..e2a48659 100644 --- a/tasks/theme.js +++ b/tasks/theme.js @@ -93,7 +93,7 @@ module.exports = function(grunt) { // theme and CI systems can still use the primary grunt implementation as a // single authority for the build process. if (theme.scripts && theme.scripts['compile-theme']) { - steps.push('theme:' + key + ':compile-theme'); + steps.push('themes:' + key + ':compile-theme'); } } }