mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-04 05:43:17 +00:00 
			
		
		
		
	u2c: make -x case-insensitive
				
					
				
			This commit is contained in:
		@@ -1,8 +1,8 @@
 | 
				
			|||||||
#!/usr/bin/env python3
 | 
					#!/usr/bin/env python3
 | 
				
			||||||
from __future__ import print_function, unicode_literals
 | 
					from __future__ import print_function, unicode_literals
 | 
				
			||||||
 | 
					
 | 
				
			||||||
S_VERSION = "1.10"
 | 
					S_VERSION = "1.11"
 | 
				
			||||||
S_BUILD_DT = "2023-08-15"
 | 
					S_BUILD_DT = "2023-11-11"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
"""
 | 
					"""
 | 
				
			||||||
u2c.py: upload to copyparty
 | 
					u2c.py: upload to copyparty
 | 
				
			||||||
@@ -433,7 +433,7 @@ def walkdirs(err, tops, excl):
 | 
				
			|||||||
        za = [x.replace(b"/", b"\\") for x in za]
 | 
					        za = [x.replace(b"/", b"\\") for x in za]
 | 
				
			||||||
        tops = za
 | 
					        tops = za
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ptn = re.compile(excl.encode("utf-8") or b"\n")
 | 
					    ptn = re.compile(excl.encode("utf-8") or b"\n", re.I)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    for top in tops:
 | 
					    for top in tops:
 | 
				
			||||||
        isdir = os.path.isdir(top)
 | 
					        isdir = os.path.isdir(top)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user