Skip to content

Commit

Permalink
[fix minor] Remove stupid options.watch || false
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Sep 30, 2011
1 parent 7ababd6 commit 1b02785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/forever/monitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var Monitor = exports.Monitor = function (script, options) {
this.watchIgnorePatterns = options.watchIgnorePatterns || [];
this.watchDirectory = options.watchDirectory || this.sourceDir;

if (options.watch || false) {
if (options.watch) {
this.watch();
}

Expand Down

0 comments on commit 1b02785

Please sign in to comment.