diff -r 19015f9bcfaa -r bfa8138851f8 FileBasedSourceCodeManagementSettingsAppl.st --- a/FileBasedSourceCodeManagementSettingsAppl.st Fri Mar 01 14:49:48 2019 +0100 +++ b/FileBasedSourceCodeManagementSettingsAppl.st Fri Mar 01 15:41:03 2019 +0100 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " COPYRIGHT (c) 2011 by eXept Software AG All Rights Reserved @@ -408,12 +410,13 @@ module := self perModulePathModule value. path := self perModulePath value. - path size > 0 ifTrue:[ + path size ~~ 0 ifTrue:[ self validateDirectoryExistsAndIsWritable:path. self addModule:module withData:(Array with:FileBasedSourceCodeManager with:path). ]. "Created: / 21-12-2011 / 14:23:10 / cg" + "Modified: / 01-03-2019 / 15:40:30 / Claus Gittinger" ! basicReadSettings