We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6405d1 + 5a84211 commit 767bfe9Copy full SHA for 767bfe9
src/Moose-Importers/FamixJavaFoldersImporter.class.st
@@ -67,8 +67,11 @@ FamixJavaFoldersImporter class >> importSettingsOn: aBuilder [
67
68
{ #category : #accessing }
69
FamixJavaFoldersImporter class >> verveineJPath [
70
+ "We check that the path exists because the loading of the settings are setting it in the CI and we end up with a folder that is not the right one :("
71
- ^ VerveineJPath ifNil: [ VerveineJPath := self defaultVerveineJDirectory ]
72
+ ^ (VerveineJPath isNotNil and: [ VerveineJPath exists ])
73
+ ifTrue: [ VerveineJPath ]
74
+ ifFalse: [ VerveineJPath := self defaultVerveineJDirectory ]
75
]
76
77
0 commit comments