1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-14 21:51:42 +00:00

Cleaned up the plugins.

This commit is contained in:
Sorin Ionescu
2011-08-30 23:16:15 -04:00
parent 422307c3ca
commit 90e7debc30
66 changed files with 902 additions and 1774 deletions

20
plugins/capistrano/_cap Normal file
View File

@ -0,0 +1,20 @@
#compdef cap
#autoload
function _cap-does-task-list-need-generating() {
if [[ ! -f .cap_tasks~ ]]; then return 0;
else
accurate=$(stat -f%m .cap_tasks~)
changed=$(stat -f%m config/deploy.rb)
return $(expr $accurate '>=' $changed)
fi
}
if [[ -f config/deploy.rb ]]; then
if _cap-does-task-list-need-generating; then
echo "\nGenerating .cap_tasks~..." > /dev/stderr
cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~
fi
compadd $(cat .cap_tasks~)
fi