mirror of
				https://github.com/pascallanger/DIY-Multiprotocol-TX-Module.git
				synced 2025-10-29 18:11:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			379 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			379 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| source ./buildroot/bin/buildFunctions;
 | |
| exitcode=0;
 | |
| 
 | |
| printf "\e[33;1mPackaging ancilliary files for v$MULTI_VERSION\e[0m\n";
 | |
| cp Multiprotocol/Multi.txt ./binaries/Multi.txt;
 | |
| 
 | |
| mkdir -p SCRIPTS/TOOLS;
 | |
| cp -r Lua_scripts/* SCRIPTS/TOOLS/;
 | |
| find SCRIPTS/TOOLS -type f -name "*.md" -delete
 | |
| 
 | |
| zip -q -r ./binaries/MultiLuaScripts.zip SCRIPTS/TOOLS/*;
 | |
| 
 | |
| exit $exitcode;
 |