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:
20
plugins/capistrano/_cap
Normal file
20
plugins/capistrano/_cap
Normal 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
|
||||
|
Reference in New Issue
Block a user