Skip to content

Commit 767bfe9

Browse files
authored
Merge pull request #749 from moosetechnology/fix-verveine-j-folder-default-path
Fix VerveineJ folder default value
2 parents f6405d1 + 5a84211 commit 767bfe9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Moose-Importers/FamixJavaFoldersImporter.class.st

+4-1
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,11 @@ FamixJavaFoldersImporter class >> importSettingsOn: aBuilder [
6767

6868
{ #category : #accessing }
6969
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 :("
7071

71-
^ VerveineJPath ifNil: [ VerveineJPath := self defaultVerveineJDirectory ]
72+
^ (VerveineJPath isNotNil and: [ VerveineJPath exists ])
73+
ifTrue: [ VerveineJPath ]
74+
ifFalse: [ VerveineJPath := self defaultVerveineJDirectory ]
7275
]
7376

7477
{ #category : #accessing }

0 commit comments

Comments
 (0)