diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-02-10 21:22:00 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-02-10 21:22:00 +0900 |
| commit | c802cd07baf7132c5053defac883f0ee6b7967b7 (patch) | |
| tree | 35a31f1242fbe76b210301b59b39f70a08520988 | |
| parent | 0dc26f52a0a5da95c3c44c43fda1edb51226ac2e (diff) | |
| parent | cd8284fe0b156aaa6e4cb3f9cb934da25d4829be (diff) | |
| download | mruby-c802cd07baf7132c5053defac883f0ee6b7967b7.tar.gz mruby-c802cd07baf7132c5053defac883f0ee6b7967b7.zip | |
Merge pull request #3446 from ksss/minirake
Fix build error when trace mode
| -rwxr-xr-x | minirake | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -237,6 +237,7 @@ module MiniRake # Time stamp for file task. def timestamp + return Time.at(0) unless File.exist?(name) stat = File::stat(name.to_s) stat.directory? ? Time.at(0) : stat.mtime end |
