mirror of
				https://codeberg.org/h3xx/simplify_static_dir
				synced 2024-08-14 23:57:24 +00:00 
			
		
		
		
	Fix '!' inside 'unless' (PBP)
This commit is contained in:
		
							parent
							
								
									d6be215a06
								
							
						
					
					
						commit
						2987e063bd
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -151,7 +151,7 @@ MAIN: { | ||||||
|         return if -d $File::Find::name; |         return if -d $File::Find::name; | ||||||
| 
 | 
 | ||||||
|         # skip non-existent files and links |         # skip non-existent files and links | ||||||
|         unless (-f $File::Find::name && ! -l $File::Find::name) { |         if (! -f $File::Find::name || -l $File::Find::name) { | ||||||
|             return; |             return; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue