`filebot -clear-cache` has been disabled due to abuse.
This commit is contained in:
parent
b8d5f7edee
commit
3258c83cfd
|
@ -77,12 +77,19 @@ public class Main {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.clearCache() || args.clearUserData()) {
|
if (args.clearCache() || args.clearUserData()) {
|
||||||
|
// clear cache must be called manually
|
||||||
|
if (System.console() == null) {
|
||||||
|
System.err.println("`filebot -clear-cache` has been disabled due to abuse.");
|
||||||
|
System.exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// clear persistent user preferences
|
||||||
if (args.clearUserData()) {
|
if (args.clearUserData()) {
|
||||||
System.out.println("Reset preferences");
|
System.out.println("Reset preferences");
|
||||||
Settings.forPackage(Main.class).clear();
|
Settings.forPackage(Main.class).clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
// clear preferences and cache
|
// clear caches
|
||||||
if (args.clearCache()) {
|
if (args.clearCache()) {
|
||||||
System.out.println("Clear cache");
|
System.out.println("Clear cache");
|
||||||
for (File folder : getChildren(ApplicationFolder.Cache.getCanonicalFile(), FOLDERS)) {
|
for (File folder : getChildren(ApplicationFolder.Cache.getCanonicalFile(), FOLDERS)) {
|
||||||
|
|
Loading…
Reference in New Issue