Skip to content

Instantly share code, notes, and snippets.

@hegemanjr
Created October 17, 2021 15:42
Show Gist options
  • Save hegemanjr/448c0485adde5e15cb098280782c2806 to your computer and use it in GitHub Desktop.
Save hegemanjr/448c0485adde5e15cb098280782c2806 to your computer and use it in GitHub Desktop.
Update composer packages in WordPress theme and plugin directories
#!/bin/bash
composer update
for dir in {*,wp-content/plugins/*,wp-content/themes/*}
do
if [ -d $dir ]
then
pushd $dir
if [ -f composer.json ]
then
composer update
fi
popd
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment