0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Nuke _cap_does_task_list_need_generating

Thanks @docwhat
This commit is contained in:
Reza 2012-09-03 21:20:45 +04:30
parent efa5593f88
commit cfeb57024d

View file

@ -1,17 +1,8 @@
#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
if [[ ! -f .cap_tasks~ || config/deploy.rb -nt .cap_tasks~ ]]; then
echo "\nGenerating .cap_tasks~..." > /dev/stderr
cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~
fi