Fix help for kicad-cli pcb export pos --side
Fixes https://gitlab.com/kicad/code/kicad/-/issues/15815
(cherry picked from commit 030a251090
)
0b94c436 fix https://gitlab.com/kicad/code/kicad/-/issues/15815
8e6bb91b Update file command_pcb_export_pos.cpp
Co-authored-by: Stefan <2252537-stefan_test@users.noreply.gitlab.com>
This commit is contained in:
parent
35c788a332
commit
f6480d67eb
|
@ -47,8 +47,8 @@ CLI::PCB_EXPORT_POS_COMMAND::PCB_EXPORT_POS_COMMAND() : PCB_EXPORT_BASE_COMMAND(
|
|||
|
||||
m_argParser.add_argument( ARG_SIDE )
|
||||
.default_value( std::string( "both" ) )
|
||||
.help( UTF8STDSTR( _(
|
||||
"Valid options: front,back,both. Gerber format only supports \"both\"." ) ) );
|
||||
.help( UTF8STDSTR( _( "Valid options: front,back,both. Gerber format only supports "
|
||||
"\"front\" or \"back\"." ) ) );
|
||||
|
||||
m_argParser.add_argument( ARG_FORMAT )
|
||||
.default_value( std::string( "ascii" ) )
|
||||
|
|
Loading…
Reference in New Issue