1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-06-28 23:00:05 +01:00

Fix console helpers path.

This commit is contained in:
hacksalot 2016-01-24 18:51:08 -05:00
parent 58b6ad841e
commit 5838b085c7

View File

@ -159,7 +159,7 @@ Output routines for HackMyResume.
case HME.afterAnalyze:
var info = evt.info;
var rawTpl = FS.readFileSync( PATH.join( __dirname, 'analyze.hbs' ), 'utf8');
HANDLEBARS.registerHelper( require('../helpers/console-helpers') );
HANDLEBARS.registerHelper( require('hackmycore/src/helpers/console-helpers') );
var template = HANDLEBARS.compile(rawTpl, { strict: false, assumeObjects: false });
var tot = 0;
info.keywords.forEach(function(g) { tot += g.count; });