Skip to content

Commit

Permalink
Merge pull request #363 from Blattlaus/master
Browse files Browse the repository at this point in the history
Ant plugin: stat command doesn't work under linux
  • Loading branch information
robbyrussell committed May 29, 2011
2 parents 40a737e + 0457332 commit d708f5d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions plugins/ant/ant.plugin.zsh
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
stat -f%m . > /dev/null 2>&1
if [ "$?" = 0 ]; then
stat_cmd=(stat -f%m)
else
stat_cmd=(stat -L --format=%y)
fi

_ant_does_target_list_need_generating () {
if [ ! -f .ant_targets ]; then return 0;
else
accurate=$(stat -f%m .ant_targets)
changed=$(stat -f%m build.xml)
accurate=$($stat_cmd -f%m .ant_targets)
changed=$($stat_cmd -f%m build.xml)
return $(expr $accurate '>=' $changed)
fi
}
Expand Down

0 comments on commit d708f5d

Please sign in to comment.