yonaskolb / XcodeGen

A Swift command line tool for generating your Xcode project
MIT License
6.88k stars 809 forks source link

Sources "name" property ignored if specifying "group" #1475

Open ChrisMash opened 1 month ago

ChrisMash commented 1 month ago

With the following I get a folder called folder under another/source/folder. It's the right place in the hierarchy, but not the right name, it seems to ignore the name property.

     - path: source/folder
        name: ReplacementName
        group: another/source/folder
        createIntermediateGroups: false

If I take out the group property then I get a folder called "ReplacementName" at the root of the project (which is what you'd expect with no group specified).