From e26b3a704f718f7057e3c418597f21259227af61 Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Fri, 5 Apr 2019 20:22:48 -0700 Subject: [PATCH] Fix Grunt badge image URL --- scripts/class-wordpress-readme-parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/class-wordpress-readme-parser.php b/scripts/class-wordpress-readme-parser.php index ff80ae7..6f09b5d 100644 --- a/scripts/class-wordpress-readme-parser.php +++ b/scripts/class-wordpress-readme-parser.php @@ -214,7 +214,7 @@ function ( $tag ) { $badge_md .= sprintf( '[![Coverage Status](%s)](%s) ', $params['coveralls_badge_src'], $url ); } if ( 'grunt_url' === $badge ) { - $badge_md .= sprintf( '[![Built with Grunt](https://cdn.%1$s/builtwith.svg)](http://%1$s) ', $url ); + $badge_md .= sprintf( '[![Built with Grunt](https://%1$s/cdn/builtwith.svg)](http://%1$s) ', $url ); } if ( 'david_url' === $badge ) { $badge_md .= sprintf( '[![Dependency Status](%1$s.svg)](%1$s) ', $url );