diff options
author | Robby Russell <robby@planetargon.com> | 2011-06-01 14:39:08 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-06-01 14:39:08 -0700 |
commit | 4b828cda28b93ae881030ace9135e720dabff757 (patch) | |
tree | 7d9eddbfb4c73bd3ae256d545e937bc41af7f961 | |
parent | 1f9b31ea347d51046720c67428a0593aedad1b6a (diff) | |
parent | f4878971752b6d76743c29d6f478d20c84755b8e (diff) | |
download | zsh-4b828cda28b93ae881030ace9135e720dabff757.tar.gz zsh-4b828cda28b93ae881030ace9135e720dabff757.tar.bz2 zsh-4b828cda28b93ae881030ace9135e720dabff757.zip |
Merge pull request #380 from brianjriddle/master
fixes for ant plugin. tested on mac.
-rw-r--r-- | plugins/ant/ant.plugin.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ant/ant.plugin.zsh b/plugins/ant/ant.plugin.zsh index 23bc7756a..691d4d2db 100644 --- a/plugins/ant/ant.plugin.zsh +++ b/plugins/ant/ant.plugin.zsh @@ -2,14 +2,14 @@ stat -f%m . > /dev/null 2>&1 if [ "$?" = 0 ]; then stat_cmd=(stat -f%m) else - stat_cmd=(stat -L --format=%y) + stat_cmd=(stat -L --format=%Y) fi _ant_does_target_list_need_generating () { if [ ! -f .ant_targets ]; then return 0; else - accurate=$($stat_cmd -f%m .ant_targets) - changed=$($stat_cmd -f%m build.xml) + accurate=$($stat_cmd .ant_targets) + changed=$($stat_cmd build.xml) return $(expr $accurate '>=' $changed) fi } |