add removal procedure

This commit is contained in:
Javier Lopez
2015-05-26 22:46:15 -05:00
parent 9251451554
commit 2d5ecdbe4a
5 changed files with 113 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#!/usr/bin/env expect
# disables script output
log_user 0
spawn tmux
# Waiting for tmux to attach. If this is not done, next command, `send` will
# not work properly.
sleep 1
# this is tmux prefix + U
send "Y"
set timeout 5
expect {
"Removing \"tmux-example-plugin\"" {
expect {
"\"tmux-example-plugin\" clean success" {
expect { "Done, press ENTER to continue." { exit 0 } }
}
}
}
timeout {
puts "Plugin update prompt timeout";
exit 1
}
}