mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
Conflict merge 1
This commit is contained in:
commit
4d4fd1ba97
19 changed files with 1371 additions and 0 deletions
|
|
@ -8,7 +8,21 @@ _rake_refresh () {
|
|||
}
|
||||
|
||||
_rake_does_task_list_need_generating () {
|
||||
<<<<<<< HEAD
|
||||
[[ ! -f .rake_tasks ]] || [[ Rakefile -nt .rake_tasks ]]
|
||||
=======
|
||||
if [ ! -f .rake_tasks ]; then return 0;
|
||||
else
|
||||
if [[ "$OSTYPE" = 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
|
||||
>>>>>>> c0134a9450e486251b247735e022d7efeb496b9c
|
||||
}
|
||||
|
||||
_rake_generate () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue