mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	installer: fix for failed chsh quitting the installation
This commit is contained in:
		
							parent
							
								
									a7bd1f99ae
								
							
						
					
					
						commit
						576499a5ad
					
				@ -95,7 +95,9 @@ setup_shell() {
 | 
			
		||||
		# If this platform provides a "chsh" command (not Cygwin), do it, man!
 | 
			
		||||
		if command_exists chsh; then
 | 
			
		||||
			echo "${BLUE}Time to change your default shell to zsh!${NORMAL}"
 | 
			
		||||
			chsh -s $(grep /zsh$ /etc/shells | tail -1)
 | 
			
		||||
			if ! chsh -s $(grep /zsh$ /etc/shells | tail -1); then
 | 
			
		||||
				echo "Error: chsh command unsuccessful. Change your default shell manually."
 | 
			
		||||
			fi
 | 
			
		||||
		# Else, suggest the user do so manually.
 | 
			
		||||
		else
 | 
			
		||||
			cat <<-EOF
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user