On Thu, 2012-12-13 at 12:45 +0100, [email protected] wrote: > From: Michal Fojtik <[email protected]> > > > Signed-off-by: Michal fojtik <[email protected]> > --- > server/bin/deltacloudd | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/server/bin/deltacloudd b/server/bin/deltacloudd > index 2f0eaeb..e0ac8a4 100755 > --- a/server/bin/deltacloudd > +++ b/server/bin/deltacloudd > @@ -85,7 +85,7 @@ BANNER > opts.on( '-V', '--verbose', 'Set verbose logging on') do |verbose| > ENV["API_VERBOSE"] ||= 'true' > end > - opts.on( nil, '--webrick', 'Force the use of WEBRick as a server') do > |opt| > + opts.on( '-w', '--webrick', 'Force the use of WEBRick as a server') do > |opt|
Minor nit: we shouldn't make it easy on people to run webrick (since they shouldn't). I'd much rather not have a short -w option for this. David
