fix require to be path friendly

This commit is contained in:
brianc 2011-03-15 23:08:37 -05:00
parent 8174883e4f
commit e98ef9a011

View File

@ -12,5 +12,5 @@ module.exports = {
}
module.exports.__defineGetter__("native", function() {
return require('native');
return require(__dirname + '/native');
})