parent
b02094e50f
commit
efa5593f88
2 changed files with 19 additions and 20 deletions
@ -0,0 +1,19 @@ |
||||
#compdef cap |
||||
#autoload |
||||
|
||||
_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 |
||||
@ -1,20 +0,0 @@ |
||||
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 |
||||
} |
||||
|
||||
function _cap () { |
||||
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 |
||||
} |
||||
|
||||
compdef _cap cap |
||||
Loading…
Reference in new issue