Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
861d380a
Commit
861d380a
authored
Mar 27, 2014
by
Robby Russell
Browse files
Merge pull request #2658 from leifcr/rake-fast-issue
Plugin: Rake-fast: Support both *nix and Darwin
parents
27c28a94
48f8f280
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/rake-fast/rake-fast.plugin.zsh
View file @
861d380a
...
...
@@ -10,8 +10,13 @@ _rake_refresh () {
_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
)
if
[[
$(
uname
-s
)
==
'Darwin'
]]
;
then
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
)
fi
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment