mirror of
				https://github.com/dockur/windows.git
				synced 2025-11-04 14:16:26 +00:00 
			
		
		
		
	feat: Remove leading and trailing spaces from VERSION (#1392)
This commit is contained in:
		
							parent
							
								
									1ebb4c8d58
								
							
						
					
					
						commit
						1c15df95ac
					
				@ -23,7 +23,8 @@ parseVersion() {
 | 
				
			|||||||
  if [[ "${VERSION}" == \"*\" || "${VERSION}" == \'*\' ]]; then
 | 
					  if [[ "${VERSION}" == \"*\" || "${VERSION}" == \'*\' ]]; then
 | 
				
			||||||
    VERSION="${VERSION:1:-1}"
 | 
					    VERSION="${VERSION:1:-1}"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					  VERSION=`expr "$VERSION" : "^\ *\(.*[^ ]\)\ *$"`
 | 
				
			||||||
  [ -z "$VERSION" ] && VERSION="win11"
 | 
					  [ -z "$VERSION" ] && VERSION="win11"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  case "${VERSION,,}" in
 | 
					  case "${VERSION,,}" in
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user