mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			332 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			332 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
$ErrorActionPreference = "Stop"
 | 
						|
 | 
						|
# Needed for Invoke-WebRequest to work via CI.
 | 
						|
$progressPreference = "silentlyContinue"
 | 
						|
 | 
						|
Invoke-WebRequest -URI "https://github.com/ethereum/evmone/releases/download/v0.10.0/evmone-0.10.0-windows-amd64.zip" -OutFile "evmone.zip"
 | 
						|
tar -xf evmone.zip "bin/evmone.dll"
 | 
						|
mkdir deps
 | 
						|
mv bin/evmone.dll deps
 |