mirror of
https://gh.wpcy.net/https://github.com/WordPressUtilities/WPUInstaller.git
synced 2026-05-05 19:42:21 +08:00
19 lines
406 B
Bash
Executable file
19 lines
406 B
Bash
Executable file
#!/bin/bash
|
|
|
|
###################################
|
|
## Clean up
|
|
###################################
|
|
|
|
echo '### Clean up';
|
|
|
|
# Unused items
|
|
rm -rf "${MAINDIR}WPUtilities/";
|
|
rm "${MAINDIR}wp-cli.phar";
|
|
rm "${MAINDIR}my.cnf";
|
|
|
|
# Functions
|
|
unset -f wpuinstaller_cp_replace;
|
|
unset -f wpuinstaller_github_plugin;
|
|
unset -f wpuinstaller_install_mu;
|
|
unset -f wpuinstaller_install_plugin;
|
|
unset -f wpuinstaller_replace;
|