Prevent clean_plugins from deleting root

If tmux was not yet configured to initialize the Tmux Plugin Manager,
the variable for the plugin home was not being set. This was resulting
in a `rm -rf /` which is pretty nuclear.

Fixes: https://github.com/tmux-plugins/tpm/issues/58
This commit is contained in:
Graham McGregor
2016-12-01 22:55:12 -05:00
parent cfaf15b768
commit 1579534c2e
2 changed files with 14 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ update_plugins() {
}
main() {
ensure_tpm_path_exists
if [ "$1" == "all" ]; then
update_all
else