mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 00:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			365 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			365 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
 |