Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/jt.rb
Original file line number Diff line number Diff line change
@@ -150,8 +150,8 @@ def self.find_sl
def self.mx?
mx_jar = "#{JRUBY_DIR}/mxbuild/dists/ruby.jar"
mvn_jar = "#{JRUBY_DIR}/lib/jruby-truffle.jar"
mx_time = File.exist?(mx_jar) ? File.mtime(mx_jar) : 0
mvn_time = File.exist?(mvn_jar) ? File.mtime(mvn_jar) : 0
mx_time = File.exist?(mx_jar) ? File.mtime(mx_jar) : Time.at(0)
mvn_time = File.exist?(mvn_jar) ? File.mtime(mvn_jar) : Time.at(0)
mx_time > mvn_time
end

0 comments on commit 846ca92

Please sign in to comment.