diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-06-26 10:55:27 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-06-26 10:55:27 +0200 |
commit | 56f2c559e6f4719a3601c8a34fad8674e67c475f (patch) | |
tree | a51eb510ff6c5e32a5e0bc181bd071fad2956498 | |
parent | c6e74ef695f8b1c567275f175e31be39a456e536 (diff) | |
download | bin-56f2c559e6f4719a3601c8a34fad8674e67c475f.zip bin-56f2c559e6f4719a3601c8a34fad8674e67c475f.tar.gz |
dia2pg: fix args
-rwxr-xr-x | dia2pg.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ options.tbl_prefix = nil opts = OptionParser.new do |opts| opts.banner = "Usage: #{$0} [options]" opts.on( "-i", "--input FILENAME", "input file" ) { |n| options.input = n } - opts.on( "-V", "--verbose", "produce verbose output" ) { options.verbose = true } + opts.on( "-v", "--verbose", "produce verbose output" ) { options.verbose = true } opts.on( "-d", "--drop", "generate drop table statements" ) { options.drop = true } opts.on( "-c", "--create", "generate create table statements" ) { options.create = true } opts.on( "-u", "--user USER", "set table owner's" ) { |n| options.user = n } |