Merge pull request #254 from rmgy733/cli-improvements

Added the -l flag which allows the rip directory to be selected via t…
This commit is contained in:
4_pr0n 2015-12-04 09:52:23 -08:00
commit 8f66b02921
2 changed files with 13 additions and 8 deletions

View File

@ -94,6 +94,10 @@ public class App {
System.err.println("\nCannot specify '-d' and '-D' simultaneously");
System.exit(-1);
}
if(cl.hasOption('l')) {
// change the default rips directory
Utils.setConfigString("rips.directory", cl.getOptionValue('l'));
}
if (cl.hasOption('u')) {
// User provided URL, rip it.
try {
@ -130,6 +134,7 @@ public class App {
opts.addOption("d", "saveorder", false, "Save the order of images in album");
opts.addOption("D", "nosaveorder", false, "Don't save order of images");
opts.addOption("4", "skip404", false, "Don't retry after a 404 (not found) error");
opts.addOption("l", "ripsdirectory", true, "Rips Directory (Default: ./rips)");
return opts;
}