We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a050b8 commit e79ae1bCopy full SHA for e79ae1b
mx.graalpython/mx_graalpython.py
@@ -2753,7 +2753,7 @@ def needsUpdate(self, newestInput):
2753
return True, "Maven package does not exist"
2754
if not os.path.exists(self.sourcesPath):
2755
return True, "Maven sources do not exist"
2756
- newestSource = newestInput or 0
+ newestSource = newestInput.timestamp if newestInput else 0
2757
for root, _, files in os.walk(self.maven_directory):
2758
if files:
2759
newestSource = max(newestSource, max(mx.getmtime(os.path.join(root, f)) for f in files))
0 commit comments