Skip to content

Commit

Permalink
[fix] Fix bad require path.
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu committed Jun 27, 2012
1 parent 665e1ec commit 4f72f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/forever/worker.js
Expand Up @@ -3,7 +3,7 @@ var events = require('events'),
path = require('path'),
nssocket = require('nssocket'),
utile = require('utile'),
forever = require(path.resolve('..', 'forever'));
forever = require(path.resolve(__dirname, '..', 'forever'));

var Worker = exports.Worker = function (options) {
events.EventEmitter.call(this);
Expand Down

0 comments on commit 4f72f8c

Please sign in to comment.