Skip to content

Commit

Permalink
[fix] Fix requires in foreverd
Browse files Browse the repository at this point in the history
Fixes #135.
Fixes #176.
  • Loading branch information
mmalecki committed Nov 30, 2011
1 parent 7cdca07 commit 76bea57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/foreverd
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ var Clip = require('clip');

var app = new Clip();

require('../lib/foreverd/cli')(app);
require('../lib/forever/service/cli')(app);

app.run();
2 changes: 1 addition & 1 deletion lib/forever/service/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

var utile = require('utile'),
optimist = require('optimist'),
forever = require('../forever'),
forever = require('../../forever'),
Service = require('./service'),
argv;

Expand Down

0 comments on commit 76bea57

Please sign in to comment.