mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
11 lines
220 B
Bash
11 lines
220 B
Bash
#!/bin/bash
|
|
|
|
ZIP="C:\Program Files\7-Zip\7z.exe"
|
|
OUTPUT="ArduinoJson.zip"
|
|
|
|
cd ..
|
|
|
|
INPUT=$(find ArduinoJson -regex ".*\.\(cpp\|h\|md\|txt\|ino\)$" -not -regex ".*Tests/.*")
|
|
|
|
rm -f $OUTPUT
|
|
"$ZIP" a $OUTPUT $INPUT |