File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def sync(somesy_input: SomesyInput):
4848 if conf .julia_file .is_file () and not conf .no_sync_julia :
4949 _sync_file (metadata , conf .julia_file , Julia )
5050
51- if not conf .no_sync_fortran :
51+ if conf . fortran_file . is_file () and not conf .no_sync_fortran :
5252 _sync_file (metadata , conf .fortran_file , Fortran )
5353
5454 if conf .pom_xml_file .is_file () and not conf .no_sync_pom_xml :
Original file line number Diff line number Diff line change @@ -264,9 +264,6 @@ def sync(self, metadata: ProjectMetadata) -> None:
264264 self .maintainers = self ._sync_person_list (
265265 self .maintainers , metadata .maintainers ()
266266 )
267- # self.contributors = self._sync_person_list(
268- # self.contributors, metadata.contributors()
269- # )
270267
271268 self .license = metadata .license .value
272269
You can’t perform that action at this time.
0 commit comments