fix dev tool for release mode
This commit is contained in:
parent
f7980f5252
commit
b5aa715537
1 changed files with 2 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ int main( int argc, char** argv )
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
std::string dev_key_prefix;
|
std::string dev_key_prefix;
|
||||||
bool need_help;
|
bool need_help = false;
|
||||||
if( argc < 2 )
|
if( argc < 2 )
|
||||||
need_help = true;
|
need_help = true;
|
||||||
else
|
else
|
||||||
|
|
@ -51,6 +51,7 @@ int main( int argc, char** argv )
|
||||||
|
|
||||||
if( need_help )
|
if( need_help )
|
||||||
{
|
{
|
||||||
|
std::cerr << argc << " " << argv[1] << "\n";
|
||||||
std::cerr << "get-dev-key <prefix> <suffix> ...\n"
|
std::cerr << "get-dev-key <prefix> <suffix> ...\n"
|
||||||
"\n"
|
"\n"
|
||||||
"example:\n"
|
"example:\n"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue