mirror of
https://github.com/mtan93/auocloud-auowp.git
synced 2026-03-07 21:21:58 +00:00
13 lines
295 B
Bash
13 lines
295 B
Bash
echo Working out HOME directory
|
|
cd ~
|
|
sleep 1s
|
|
echo Setting WP Path
|
|
HMEPATH="$(pwd)"
|
|
sleep 1s
|
|
echo Deactivating New Worker
|
|
wp plugin deactivate mainwp-child --path=$HMEPATH/public_html/
|
|
sleep 10s
|
|
echo Reactivating New Worker
|
|
wp plugin activate mainwp-child --path=$HMEPATH/public_html/
|
|
echo DONE
|