source: rtos_arduino/trunk/arduino_lib/libraries/ArduinoJson/scripts/build-arduino-package.sh@ 209

Last change on this file since 209 was 209, checked in by ertl-honda, 8 years ago

BlueMix用のフィアルを追加

File size: 396 bytes
Line 
1#!/bin/bash
2
3TAG=$(git describe)
4OUTPUT="ArduinoJson-$TAG.zip"
5
6cd $(dirname $0)/../..
7
8# remove existing file
9rm -f $OUTPUT
10
11# create zip
127z a $OUTPUT \
13 ArduinoJson/CHANGELOG.md \
14 ArduinoJson/examples \
15 ArduinoJson/include \
16 ArduinoJson/keywords.txt \
17 ArduinoJson/library.properties \
18 ArduinoJson/LICENSE.md \
19 ArduinoJson/README.md \
20 ArduinoJson/src \
21 -x!ArduinoJson/src/CMakeLists.txt
Note: See TracBrowser for help on using the repository browser.