mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
fix old capistrano completion task
This commit is contained in:
parent
0d59069136
commit
ea2cfd6f27
1 changed files with 6 additions and 7 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
function _cap_does_task_list_need_generating () {
|
function _cap_does_task_list_need_generating () {
|
||||||
if [ ! -f .cap_tasks~ ]; then return 0;
|
if [ ! -f .cap_tasks ]; then return 0;
|
||||||
else
|
else
|
||||||
accurate=$(stat -f%m .cap_tasks~)
|
accurate=$(stat -f%m .cap_tasks)
|
||||||
changed=$(stat -f%m config/deploy.rb)
|
changed=$(stat -f%m config/deploy.rb)
|
||||||
return $(expr $accurate '>=' $changed)
|
return $(expr $accurate '>=' $changed)
|
||||||
fi
|
fi
|
||||||
|
|
@ -10,12 +10,11 @@ function _cap_does_task_list_need_generating () {
|
||||||
function _cap () {
|
function _cap () {
|
||||||
if [ -f config/deploy.rb ]; then
|
if [ -f config/deploy.rb ]; then
|
||||||
if _cap_does_task_list_need_generating; then
|
if _cap_does_task_list_need_generating; then
|
||||||
echo "\nGenerating .cap_tasks~..." > /dev/stderr
|
echo "\nGenerating .cap_tasks..." > /dev/stderr
|
||||||
cap show_tasks -q | cut -d " " -f 1 | sed -e '/^ *$/D' -e '1,2D'
|
cap -vT | sed -e '/^cap/!D' | cut -d " " -f 2 > .cap_tasks
|
||||||
> .cap_tasks~
|
|
||||||
fi
|
fi
|
||||||
compadd `cat .cap_tasks~`
|
compadd `cat .cap_tasks`
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
compctl -K _cap cap
|
compdef _cap cap
|
||||||
Loading…
Add table
Add a link
Reference in a new issue