Оновлення Magento 2
Скрипт для оновлення Magento 2:
#!/bin/bash
# upgrade.sh
composer require magento/product-community-edition $1 --no-update
composer update
rm -rf var/cache/* var/page_cache/* var/generation/*
php bin/magento setup:upgrade
find var vendor pub/static pub/media app/etc -type f -exec chmod g+w {} \;
find var vendor pub/static pub/media app/etc -type d -exec chmod g+ws {} \;
chown -R :www-data .
chmod u+x bin/magento
Приклад запуску:
upgrade.sh 2.2.2
Джерело тут