Skip to content

Commit

Permalink
#154 bugfix load correct resources file
Browse files Browse the repository at this point in the history
  • Loading branch information
p-a-s-c-a-l committed May 18, 2017
1 parent 7de48db commit fe9198a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ public static void main(final String[] args) {
if (args.length == 2) {
propertiesFileStream = Files.newInputStream(FileSystems.getDefault().getPath(args[0]),
StandardOpenOption.READ);
resourcesFileStream = Files.newInputStream(FileSystems.getDefault().getPath(args[0]),
resourcesFileStream = Files.newInputStream(FileSystems.getDefault().getPath(args[1]),
StandardOpenOption.READ);
} else {
propertiesFileStream = ZenodoUploader.class.getResourceAsStream("zenodo.properties");
Expand Down

0 comments on commit fe9198a

Please # to comment.