Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 948 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 948 Bytes

Pantheon site updates

Bash shell script to check core and contrib module/plugin updates for all available Pantheon sites

  • Works for Drupal 7, Drupal 8 and WordPress sites hosted on Pantheon
  • Supports Drush 9

Prerequisites:

Install:

$ git clone [email protected]:uberhacker/pantheon-site-updates.git
$ sudo cp pantheon-site-updates/checkupdates /usr/local/bin/

Usage:

Check updates on all sites (errors to stdout)

$ checkupdates > report.txt

Check updates on all sites (ignore errors)

$ checkupdates > report.txt 2> /dev/null

Only report errors to file

$ checkupdates 2> error_report.txt

Check updates and report errors to file

$ checkupdates &> full_report.txt