Skip to content

Commit 62dd154

Browse files
author
dmp42
committed
Error report tweak
1 parent ac05034 commit 62dd154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsboot/gister/packman.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ if (typeof jsBoot == 'undefined')
117117
var simplePull = function(glob, name) {
118118
name.split('.').forEach(function(fragment) {
119119
if (!(fragment in glob))
120-
throw new Error('MISSING', 'Trying to require something that doesn\'t exist');
120+
throw new Error('MISSING', 'Trying to require something that doesn\'t exist: ' + name);
121121
glob = glob[fragment];
122122
});
123123
return glob;

0 commit comments

Comments
 (0)