Skip to content

Commit

Permalink
Build/Test Tools: Improve the error message shown when fetching Twemo…
Browse files Browse the repository at this point in the history
…ji fails.

This allows the full error message to be shown from the connection attempt instead of a generic error message.

Fixes #62382


git-svn-id: https://develop.svn.wordpress.org/trunk@59443 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
johnbillion committed Nov 21, 2024
1 parent b2c8d8d commit 99dd184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ module.exports = function(grunt) {
files = spawn( 'gh', [ 'api', 'graphql', '-f', query] );

if ( 0 !== files.status ) {
grunt.fatal( 'Unable to fetch Twemoji file list' );
grunt.fatal( files.stderr.toString() );
}

try {
Expand Down

0 comments on commit 99dd184

Please sign in to comment.