提交 86925121 编写于 作者: R Robby Russell

Updating the name of the rake and capistrano task cache file to append a ~ to...

Updating the name of the rake and capistrano task cache file to append a ~ to the end of the filename so it's easier to ignore in rails git projects. [#1]
上级 b67961d8
_rake_does_task_list_need_generating () {
if [ ! -f .rake_tasks ]; then return 0;
if [ ! -f .rake_tasks~ ]; then return 0;
else
accurate=$(stat -f%m .rake_tasks)
accurate=$(stat -f%m .rake_tasks~)
changed=$(stat -f%m Rakefile)
return $(expr $accurate '>=' $changed)
fi
......@@ -10,19 +10,19 @@ _rake_does_task_list_need_generating () {
_rake () {
if [ -f Rakefile ]; then
if _rake_does_task_list_need_generating; then
echo "\nGenerating .rake_tasks..." > /dev/stderr
rake --silent --tasks | cut -d " " -f 2 > .rake_tasks
echo "\nGenerating .rake_tasks~..." > /dev/stderr
rake --silent --tasks | cut -d " " -f 2 > .rake_tasks~
fi
compadd `cat .rake_tasks`
compadd `cat .rake_tasks~`
fi
}
compdef _rake rake
function _cap_does_task_list_need_generating () {
if [ ! -f .cap_tasks ]; then return 0;
if [ ! -f .cap_tasks~ ]; then return 0;
else
accurate=$(stat -f%m .cap_tasks)
accurate=$(stat -f%m .cap_tasks~)
changed=$(stat -f%m config/deploy.rb)
return $(expr $accurate '>=' $changed)
fi
......@@ -31,11 +31,11 @@ function _cap_does_task_list_need_generating () {
function _cap () {
if [ -f config/deploy.rb ]; 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_tasks
> .cap_tasks~
fi
compadd `cat .cap_tasks`
compadd `cat .cap_tasks~`
fi
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册