You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/sh |
|
plugin=$(wp plugin list 2> /dev/null | grep available | head -n 1 | awk '{print $1}') |
|
echo "$plugin" |
|
versions=$(wp plugin update $plugin 2> /dev/null | tail -n 2 | head -n 1 | awk '{print $2 "->" $3}') |
|
echo "$versions" |
|
git add . |
|
git commit -m "Update $plugin $versions"
|
|
|