Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Fixed output parameter in the inventory command #19

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/org/csanchez/aws/glacier/Glacier.java
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down