Commit 98d9d5a6 by Alan Mishchenko

Added warning when a command is missing

parent 034fc5a1
......@@ -128,6 +128,8 @@ int CmdCommandDispatch( Abc_Frame_t * pAbc, int * pargc, char *** pargv )
else
{
fprintf( pAbc->Err, "** cmd error: unknown command '%s'\n", argv[0] );
fprintf( pAbc->Err, "(this is likely caused by using an alias defined in \"abc.rc\"\n" );
fprintf( pAbc->Err, "without having this file in the current or parent directory)\n" );
return 1;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment