From 386adbb8f85fdab155399c8ef12f6a52c376886e Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 23 May 2018 11:02:28 +0000 Subject: [PATCH] =?UTF-8?q?Following=20[43309],=20I=20need=20to=20change?= =?UTF-8?q?=20one=20little=20line,=20And=20delete=20some=20left=20over=20c?= =?UTF-8?q?ruft,=20only=20then=20shall=20we=20prevail.=20There=20are=20som?= =?UTF-8?q?e=20things=20easily=20missed,=20when=20using=20Git,=20which=20d?= =?UTF-8?q?oes=20not=20persist=E2=80=94=20Empty=20directories,=20though=20?= =?UTF-8?q?that=20didn't=20derail=E2=80=94=20Our=20Travis-based=20tests,?= =?UTF-8?q?=20which=20now=20must=20prevail.=20=20=20=20=20=20=20=20=20=20?= =?UTF-8?q?=20=20=20Quoth=20Travis=20CI,=20=E2=80=9CBuild=20did=20fail.?= =?UTF-8?q?=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See #43055. git-svn-id: https://develop.svn.wordpress.org/trunk@43310 602fd350-edb4-49c9-b593-d223f7449a82 --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 51e2c5a3fd..86839df62c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1341,7 +1341,7 @@ module.exports = function(grunt) { // Travis CI tasks. grunt.registerTask('travis:js', 'Runs Javascript Travis CI tasks.', [ 'jshint:corejs', 'qunit:compiled' ]); - grunt.registerTask('travis:phpunit', 'Runs PHPUnit Travis CI tasks.', 'phpunit'); + grunt.registerTask('travis:phpunit', 'Runs PHPUnit Travis CI tasks.', [ 'build', 'phpunit' ]); // Patch task. grunt.renameTask('patch_wordpress', 'patch');