From: Tim Otten Date: Wed, 28 Sep 2016 03:53:20 +0000 (-0400) Subject: CRM-19417 - distmaker JSON report - Tighten ordering, fix typo X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=56d200234a29c8720855b4077173d3ba5167d949;p=civicrm-core.git CRM-19417 - distmaker JSON report - Tighten ordering, fix typo --- diff --git a/distmaker/utils/repo-report.php b/distmaker/utils/repo-report.php index ef64012693..91b6cf93b4 100644 --- a/distmaker/utils/repo-report.php +++ b/distmaker/utils/repo-report.php @@ -42,12 +42,14 @@ if (getenv('D5PACK')) { $data['tar']['Drupal'] = "civicrm-$DM_VERSION-drupal.tar.gz"; } if (getenv('WPPACK')) { - $data['tar']['WordPresse'] = "civicrm-$DM_VERSION-wordpress.zip"; + $data['tar']['WordPress'] = "civicrm-$DM_VERSION-wordpress.zip"; } if (getenv('L10NPACK')) { $data['tar']['L10n'] = "civicrm-$DM_VERSION-l10n.tar.gz"; } ksort($data); +ksort($data['tar']); +ksort($data['git']); $data['rev'] = md5(json_encode($data)); echo json_encode($data);