* auto-disable xattr features when in test mode
This commit is contained in:
parent
fa55b68360
commit
1e06994a59
|
@ -119,7 +119,11 @@ public class Main {
|
|||
if (args.unixfs) {
|
||||
System.setProperty("unixfs", "true");
|
||||
}
|
||||
if (args.disableAnalytics || args.action.equalsIgnoreCase("test")) {
|
||||
if (args.disableAnalytics) {
|
||||
System.setProperty("application.analytics", "false");
|
||||
}
|
||||
if (args.action.equalsIgnoreCase("test")) {
|
||||
System.setProperty("useExtendedFileAttributes", "false");
|
||||
System.setProperty("application.analytics", "false");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue