mirror of
				https://github.com/KrumpetPirate/AAXtoMP3.git
				synced 2025-11-03 20:40:43 +01:00 
			
		
		
		
	fix "syntax error in expression"
This commit is contained in:
		
							
								
								
									
										2
									
								
								AAXtoMP3
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								AAXtoMP3
									
									
									
									
									
								
							@@ -801,7 +801,7 @@ do
 | 
			
		||||
 | 
			
		||||
  extra_crop_cover=''
 | 
			
		||||
  cover_width=$(ffprobe -i "${cover_file}" 2>&1 | grep -Po "[0-9]+(?=x[0-9]+)")
 | 
			
		||||
  if [ "$(( ${cover_width} % 2 ))" == "1" ]; then
 | 
			
		||||
  if (( ${cover_width} % 2 == 1 )); then
 | 
			
		||||
    if [ "$((${loglevel} > 1))" == "1" ]; then
 | 
			
		||||
      log "Cover ${cover_file} has odd width ${cover_width}, setting extra_crop_cover to make even."
 | 
			
		||||
    fi
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user