From 8e1e747854a408598c64d7364a7bb1b0db0621fb Mon Sep 17 00:00:00 2001 From: Kaspars Dambis Date: Sun, 29 Jul 2018 19:21:27 +0300 Subject: [PATCH] Check for changes after the build We bump version numbers during the build --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index e0c645c..424de50 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -115,16 +115,16 @@ module.exports = function( grunt ) { grunt.registerTask( 'deploy', [ - 'check-diff', 'build', + 'check-diff', 'wp_deploy', ] ); grunt.registerTask( 'deploy:trunk', [ - 'check-diff', 'build', + 'check-diff', 'wp_deploy:trunk', ] );