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
48f8f280
Commit
48f8f280
authored
Mar 25, 2014
by
Leif Ringstad
Browse files
Plugin: Rake-fast: Support both *nix and Darwin
parent
ffc17b6b
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/rake-fast/rake-fast.plugin.zsh
View file @
48f8f280
...
@@ -27,8 +27,13 @@ _rake_refresh () {
...
@@ -27,8 +27,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
if
[[
$(
uname
-s
)
==
'Darwin'
]]
;
then
accurate
=
$(
stat
-f
%m .rake_tasks
)
accurate
=
$(
stat
-f
%m .rake_tasks
)
changed
=
$(
stat
-f
%m Rakefile
)
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
}
}
...
...
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