venmo / synx

A command-line tool that reorganizes your Xcode project folder to match your Xcode groups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Puts Localizable.strings in a subfolder, not matching group structure

mvandervelden opened this issue · comments

In my project, Localization files are in the following structure:

Localization
    en.lproj
        Localizable.strings
    fr.lproj
        Localizable.strings
    ...Some+Categories.h

This is reflected both in groups and folder structure.
When I run synx, the Localisable.strings files are consistently put in the following structure:

Localization
    en.lproj
        en.lproj
            Localizable.strings
    fr.lproj
        fr.lproj
            Localizable.strings
    ...Some+Categories.h

While the folder structure is changed, the group structure remains the same. This causes a mismatch. I'd prefer synx to keep my own structure intact, without having to exclude the group explicitly.