1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-02 12:27:08 +01:00

Move error handling out of core.

This commit is contained in:
hacksalot
2016-01-13 15:28:02 -05:00
parent eddda8146e
commit 19b30d55ec
7 changed files with 37 additions and 49 deletions

View File

@ -37,7 +37,7 @@ describe('Testing Ouput interface', function () {
HMRMAIN( args );
}
catch( ex ) {
require('../src/core/error-handler').err( ex, false );
require('../src/cli/error-handler').err( ex, false );
}
CHALK.enabled = true;
process.exit = ProcessExitOrg;