Fix option for multi-threads in fd
This commit is contained in:
		@@ -19,7 +19,7 @@ _num_threads = len(sched_getaffinity(0))  # have fd run on multiple threads
 | 
				
			|||||||
FIND_CMD = shutil.which("fd")
 | 
					FIND_CMD = shutil.which("fd")
 | 
				
			||||||
DEFAULT_FIND_OPTS = [
 | 
					DEFAULT_FIND_OPTS = [
 | 
				
			||||||
    "--threads",
 | 
					    "--threads",
 | 
				
			||||||
    _num_threads,
 | 
					    str(_num_threads),
 | 
				
			||||||
    "--hidden",
 | 
					    "--hidden",
 | 
				
			||||||
    "--print0",
 | 
					    "--print0",
 | 
				
			||||||
    "--type",
 | 
					    "--type",
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user