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

Fix single format output error.

Fixes #97.
This commit is contained in:
hacksalot 2016-01-08 11:59:10 -05:00
parent 971d4a5439
commit ca94513630

View File

@ -226,8 +226,7 @@ Implementation of the 'generate' verb for HackMyResume.
};
}),
function(t) {
return t.format === 'all' ||
theme.hasFormat( parsePath( t.format ).extname.substr(1));
return t.format === 'all' || theme.hasFormat( t.format );
}
);