Do not include devel dependencies in the release

The composer require does automatically run update and thus pulling in
all things we've removed in previous step. Passing --update-no-dev
avoids this.

Fixes #13146

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2017-04-04 08:45:45 +02:00
parent 10cbb0552f
commit 6f9a50f2e7
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
- issue #13135 Database list Tooltips: Show wrong value
- issue #13150 Fixed pagination while browsing resuls
- issue #13149 Fixed outbound links in changelog.php
- issue #13146 Do not include devel dependencies in the release
4.7.0 (2017-03-28)
- patch #12233 [Display] Improve message when renaming database to same name

View File

@ -211,7 +211,7 @@ if [ ! -d libraries/tcpdf ] ; then
# suggested package. Let's require it and then revert
# composer.json to original state.
cp composer.json composer.json.backup
composer require tecnickcom/tcpdf
composer require --update-no-dev tecnickcom/tcpdf
mv composer.json.backup composer.json
echo "* Cleanup of composer packages"
rm -rf \