mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	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]
This commit is contained in:
		
							parent
							
								
									b67961d812
								
							
						
					
					
						commit
						8692512106
					
				@ -1,7 +1,7 @@
 | 
			
		||||
_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
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user