1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-04 09:00:06 +01:00

Fix missing semicolon.

This commit is contained in:
hacksalot 2015-12-30 20:09:39 -05:00
parent a280d8acb2
commit 55943bf49a

View File

@ -199,7 +199,7 @@ Implementation of the 'generate' verb for HackMyResume.
// Set up the destination collection. It's either the array of files passed
// by the user or 'out/resume.all' if no targets were specified.
var destColl = (dst && dst.length && dst) ||
[PATH.normalize('out/resume.all')]
[PATH.normalize('out/resume.all')];
// Assemble an array of expanded target files... (can't use map() here)
var targets = [];