CLI: Use BASH if SHELL variable is not set (Windows) (#12847)
This commit is contained in:
		
							parent
							
								
									6c5e94061c
								
							
						
					
					
						commit
						30aae6298b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -238,6 +238,6 @@ def run(command, *args, **kwargs):
 | 
			
		|||
        safecmd = map(str, command)
 | 
			
		||||
        safecmd = map(shlex.quote, safecmd)
 | 
			
		||||
        safecmd = ' '.join(safecmd)
 | 
			
		||||
        command = [os.environ['SHELL'], '-c', safecmd]
 | 
			
		||||
        command = [os.environ.get('SHELL', '/usr/bin/bash'), '-c', safecmd]
 | 
			
		||||
 | 
			
		||||
    return subprocess.run(command, *args, **kwargs)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue