Skip to content

Commit

Permalink
fixed --type due to prev change
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Apr 10, 2012
1 parent 9ec2766 commit 3ce600c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/jog
Expand Up @@ -2,6 +2,7 @@

var program = require('commander')
, util = require('util')
, ms = require('ms')
, jog = require('..')
, select;

Expand All @@ -28,7 +29,7 @@ program.on('level', function(val){
// --type

program.on('type', function(val){
selects.push(new Function('_', 'return _.msg == "' + val + '"'));
selects.push(new Function('_', 'return _.type == "' + val + '"'));
});

// --select
Expand Down

0 comments on commit 3ce600c

Please sign in to comment.