mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	Merge pull request #2658 from leifcr/rake-fast-issue
Plugin: Rake-fast: Support both *nix and Darwin
This commit is contained in:
		| @@ -10,8 +10,13 @@ _rake_refresh () { | |||||||
| _rake_does_task_list_need_generating () { | _rake_does_task_list_need_generating () { | ||||||
|   if [ ! -f .rake_tasks ]; then return 0; |   if [ ! -f .rake_tasks ]; then return 0; | ||||||
|   else |   else | ||||||
|     accurate=$(stat -f%m .rake_tasks) |     if [[ $(uname -s) == 'Darwin' ]]; then | ||||||
|     changed=$(stat -f%m Rakefile) |       accurate=$(stat -f%m .rake_tasks) | ||||||
|  |       changed=$(stat -f%m Rakefile) | ||||||
|  |     else | ||||||
|  |       accurate=$(stat -c%Y .rake_tasks) | ||||||
|  |       changed=$(stat -c%Y Rakefile) | ||||||
|  |     fi | ||||||
|     return $(expr $accurate '>=' $changed) |     return $(expr $accurate '>=' $changed) | ||||||
|   fi |   fi | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user