From 8c4fd88ecba0ea87fe0992d95e0d25021f699e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicola=CC=81s=20Bello=20Camilletti?= Date: Fri, 6 Sep 2013 18:39:29 -0300 Subject: [PATCH] Fixed output parameter in the inventory command --- src/main/java/org/csanchez/aws/glacier/Glacier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/csanchez/aws/glacier/Glacier.java b/src/main/java/org/csanchez/aws/glacier/Glacier.java index 3082a87..2289abb 100644 --- a/src/main/java/org/csanchez/aws/glacier/Glacier.java +++ b/src/main/java/org/csanchez/aws/glacier/Glacier.java @@ -129,7 +129,7 @@ public static void main(String[] args) throws Exception { throw new GlacierCliException("The inventory command requires exactly two parameters."); } glacier.inventory(arguments.get(1), cmd.getOptionValue("topic", "glacier"), - cmd.getOptionValue("queue", "glacier"), cmd.getOptionValue("file", "glacier.json")); + cmd.getOptionValue("queue", "glacier"), cmd.getOptionValue("output", "glacier.json")); break; case UPLOAD: