Skip to content

Commit be4eaa1

Browse files
committed
Bump command line parser version
1 parent 534fe8c commit be4eaa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/radarcns/RestructureAvroRecords.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static void main(String [] args) {
8383
final CommandLineArgs commandLineArgs = new CommandLineArgs();
8484
final JCommander parser = JCommander.newBuilder().addObject(commandLineArgs).build();
8585

86-
parser.setProgramName("hadoop jar restructurehdfs-all-0.3.3.jar");
86+
parser.setProgramName("java -jar restructurehdfs-0.4.0-all.jar");
8787
parser.parse(args);
8888

8989
if(commandLineArgs.help) {
@@ -96,8 +96,8 @@ public static void main(String [] args) {
9696

9797
long time1 = System.currentTimeMillis();
9898

99-
RestructureAvroRecords restr = new RestructureAvroRecords.Builder(commandLineArgs.hdfsUri,
100-
commandLineArgs.outputDirectory)
99+
RestructureAvroRecords restr = new RestructureAvroRecords
100+
.Builder(commandLineArgs.hdfsUri, commandLineArgs.outputDirectory)
101101
.useGzip("gzip".equalsIgnoreCase(commandLineArgs.compression))
102102
.doDeduplicate(commandLineArgs.deduplicate).format(commandLineArgs.format)
103103
.doStage(!commandLineArgs.noStage)

0 commit comments

Comments
 (0)