mirror of
				https://github.com/RfidResearchGroup/proxmark3.git
				synced 2025-10-31 16:42:34 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			355 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			355 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| # Iceman 2022
 | |
| #
 | |
| # This script is to be run from proxmark root folder inside the docker env
 | |
| # docker/kali/run_tests.sh;
 | |
| 
 | |
| sudo apt update && sudo apt upgrade -y
 | |
| python3 -m venv /tmp/venv
 | |
| source /tmp/venv/bin/activate
 | |
| python3 -m pip install --use-pep517 pyaes
 | |
| python3 -m pip install ansicolors sslcrypto
 | |
| tools/release_tests.sh
 | |
| deactivate
 |