🗃️ modified: files/run.sh 🗃️

This commit is contained in:
Jason 2022-06-24 15:21:57 -04:00
parent 361b07e2ad
commit a990f61a0a
No known key found for this signature in database
GPG Key ID: 4F765975C1F0EE5F

View File

@ -37,7 +37,7 @@ fi
if [ -d "/var/lib/wordpress/devel" ]; then if [ -d "/var/lib/wordpress/devel" ]; then
echo "[i] Initializing plugin development dir" echo "[i] Initializing plugin development dir"
for d in /var/lib/wordpress/devel/*; do for d in $(ls /var/lib/wordpress/devel); do
ln -sf "/var/lib/wordpress/devel/$d" "/usr/html/wp-content/plugins/$d" ln -sf "/var/lib/wordpress/devel/$d" "/usr/html/wp-content/plugins/$d"
done done
fi fi