/* webfan (C) Till Wehowski, Webfan.de - All rights reserved. */
var action = '';
exports.finalize = function(CLI){
};
exports.prepare = function(CLI){
_CLI.finalState.add('parse_second_arg');
var parse_second_arg = function(value){
action = value;
_CLI.emit('parse_second_arg', action);
};
CLI.positionalSwitches[1] = parse_second_arg;
};
|