kicad-cli, export drill files: re-add -u as short option for --excellon-units.

Was removed by my previous commit b6f5e3d
This commit is contained in:
jean-pierre charras 2023-03-30 10:47:13 +02:00
parent b6f5e3df2b
commit e0d983e0d8
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ CLI::EXPORT_PCB_DRILL_COMMAND::EXPORT_PCB_DRILL_COMMAND() : EXPORT_PCB_BASE_COMM
.help( UTF8STDSTR( .help( UTF8STDSTR(
_( "Valid options are: decimal,suppressleading,suppresstrailing,keep." ) ) ); _( "Valid options are: decimal,suppressleading,suppresstrailing,keep." ) ) );
m_argParser.add_argument( ARG_EXCELLON_UNITS ) m_argParser.add_argument( "-u", ARG_EXCELLON_UNITS )
.default_value( std::string( "mm" ) ) .default_value( std::string( "mm" ) )
.help( UTF8STDSTR( _( "Output units, valid options:in,mm" ) ) ); .help( UTF8STDSTR( _( "Output units, valid options:in,mm" ) ) );