mirror of
https://github.com/dcarrillo/prezto.git
synced 2025-06-14 18:31:41 +00:00
Fixed issue #19 'Rake not auto completing'. The stat command syntax that was being used was not correct. Or at least on my machine. See man page for the stat command
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
_rake_does_task_list_need_generating () {
|
||||
if [ ! -f .rake_tasks~ ]; then return 0;
|
||||
else
|
||||
accurate=$(stat -f%m .rake_tasks~)
|
||||
changed=$(stat -f%m Rakefile)
|
||||
accurate=$(stat -c "%n" .rake_tasks~)
|
||||
changed=$(stat -c "%n" Rakefile)
|
||||
return $(expr $accurate '>=' $changed)
|
||||
fi
|
||||
}
|
||||
|
Reference in New Issue
Block a user