mirror of
				https://github.com/bblanchon/ArduinoJson.git
				synced 2025-11-04 08:31:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			252 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			252 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -eu
 | 
						|
 | 
						|
INPUT=$1
 | 
						|
OUTPUT=$2
 | 
						|
 | 
						|
cd "$INPUT"
 | 
						|
 | 
						|
# remove existing file
 | 
						|
rm -f "$OUTPUT"
 | 
						|
 | 
						|
# create zip
 | 
						|
7z a "$OUTPUT" \
 | 
						|
	-xr!.vs \
 | 
						|
	CHANGELOG.md \
 | 
						|
	examples \
 | 
						|
	src \
 | 
						|
	keywords.txt \
 | 
						|
	library.properties \
 | 
						|
	LICENSE.txt \
 | 
						|
	README.md \
 | 
						|
	ArduinoJson.h
 |