Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge a9b8dbb into 845326c
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Jan 15, 2015
2 parents 845326c + a9b8dbb commit 3d38c55
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/node-sass
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,11 @@ function getEmitter() {
console.log(data);
});

emitter.on('done', process.exit);
emitter.on('done', function() {
if (!options.watch) {
process.exit;
}
});

return emitter;
}
Expand Down

0 comments on commit 3d38c55

Please sign in to comment.