Last active
January 4, 2017 10:18
-
-
Save miya0001/0686365ad43587b32876a159dbe6ec24 to your computer and use it in GitHub Desktop.
wp-cli
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
wp @all core verify-checksums | |
wp @all vackup create | |
wp @all core update | |
wp @all core language update | |
wp @all plugin update --all | |
wp @all theme update --all | |
wp @all core verify-checksums | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment