* Normalize Spack Win entrypoints Currently Spack has multiple entrypoints on Windows that in addition to differing from *nix implementations, differ from shell to shell on Windows. This is a bit confusing for new users and in general unnecessary. This PR adds a normal setup script for the batch shell while preserving the previous "click from file explorer for spack shell" behavior. Additionally adds a shell title to both powershell and cmd letting users know this is a Spack shell * remove doskeys
		
			
				
	
	
		
			12 lines
		
	
	
		
			356 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			356 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
@ECHO OFF
 | 
						|
:: (c) 2021 Lawrence Livermore National Laboratory
 | 
						|
:: To use this file independently of Spack's installer, execute this script in its directory, or add the
 | 
						|
:: associated bin directory to your PATH. Invoke to launch Spack Shell.
 | 
						|
::
 | 
						|
:: source_dir/spack/bin/spack_cmd.bat
 | 
						|
::
 | 
						|
 | 
						|
call "%~dp0..\share\spack\setup-env.bat"
 | 
						|
pushd %SPACK_ROOT%
 | 
						|
%comspec% /K
 |