diff --git a/mx.py b/mx.py index c58678fb..7cd5c85b 100755 --- a/mx.py +++ b/mx.py @@ -3822,6 +3822,10 @@ def _id(self, metadata): assert metadata.snapshotVersion.endswith('-SNAPSHOT') return metadata.snapshotVersion[:-len('-SNAPSHOT')] + def isDirty(self, abortOnError=True): + # a binary repo can not be dirty + return False + def _hashFromUrl(url): logvv('Retrieving SHA1 from {}'.format(url)) hashFile = urllib2.urlopen(url)