X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=distmaker%2Fdistmaker.sh;h=5471d6ae0dc8fe16524455c3a5a355ee11279746;hb=0d7ef283dedf00b7c7255ce9528bd06673909389;hp=7347213bb0c5dbba8a68aa0f81c68bb13159dd16;hpb=d40b6649e8af7fa55a5a71beee3483cdf6c68bf3;p=civicrm-core.git diff --git a/distmaker/distmaker.sh b/distmaker/distmaker.sh index 7347213bb0..5471d6ae0d 100755 --- a/distmaker/distmaker.sh +++ b/distmaker/distmaker.sh @@ -43,6 +43,7 @@ J5PACK=0 WP5PACK=0 SK5PACK=0 L10NPACK=0 +REPOREPORT=0 # Display usage display_usage() @@ -192,6 +193,12 @@ case $1 in WP5PACK=1 ;; + # REPO REPORT PHP5 + report) + echo; echo "Generating repo report module"; echo; + REPOREPORT=1 + ;; + # ALL all) echo; echo "Generating all the tarballs we've got (not the directories). "; echo; @@ -202,6 +209,7 @@ case $1 in WP5PACK=1 SKPACK=1 L10NPACK=1 + REPOREPORT=1 ;; # USAGE @@ -289,5 +297,19 @@ if [ "$WP5PACK" = 1 ]; then bash $P/dists/wordpress_php5.sh fi +if [ "$REPOREPORT" = 1 ]; then + echo; echo "Preparing repository report"; echo; + env \ + L10NPACK="$L10NPACK" \ + BPACK="$BPACK" \ + D56PACK="$D56PACK" \ + D5PACK="$D5PACK" \ + D7DIR="$D7DIR" \ + SKPACK="$SKPACK" \ + J5PACK="$J5PACK" \ + WP5PACK="$WP5PACK" \ + bash $P/dists/repo-report.sh +fi + unset DM_SOURCEDIR DM_GENFILESDIR DM_TARGETDIR DM_TMPDIR DM_PHP DM_RSYNC DM_VERSION DM_ZIP echo;echo "DISTMAKER Done.";echo;