mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| TAG=$(git describe)
 | |
| OUTPUT="ArduinoJson-$TAG.zip"
 | |
| 
 | |
| cd $(dirname $0)/../../..
 | |
| 
 | |
| # remove existing file
 | |
| rm -f $OUTPUT
 | |
| 
 | |
| # create zip
 | |
| 7z a $OUTPUT \
 | |
| 	ArduinoJson/CHANGELOG.md \
 | |
| 	ArduinoJson/examples \
 | |
| 	ArduinoJson/src \
 | |
| 	ArduinoJson/keywords.txt \
 | |
| 	ArduinoJson/library.properties \
 | |
| 	ArduinoJson/LICENSE.md \
 | |
| 	ArduinoJson/README.md \
 | |
| 	ArduinoJson/ArduinoJson.h
 |