amtrack / force-dev-tool

[DEPRECATED] Command line tool supporting the Force.com development lifecycle
MIT License
108 stars 37 forks source link

Layout name with special chars bug on change set generation #123

Closed dieffrei closed 6 years ago

dieffrei commented 6 years ago

When I try to create a change set: git diff master | force-dev-tool change set create feature-merge -f

I got some errors for all layout names that have using special chars: Given example: Correct name: AccountAreaSalesc-Layout de Área de venda.layout Wrong name after on change set: AccountAreaSalesc-Layout de \303\201rea de venda.layout"

Another strange thing is after execution, was created two change sets: feature-merge and "b

leboff commented 6 years ago

@dieffrei can you set core.quotepath to off before running the diff and see if that helps?

git config core.quotepath off

dieffrei commented 6 years ago

Thank you @leboff that's it! Much appreciated your help!