Skip to content

Commit

Permalink
Deprecate package.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
koba04 committed Jun 14, 2018
1 parent be9bf6b commit afb91ef
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,13 @@ kintone Plug-in SDK

This SDK includes kintone plug-in packaging tool.

## package.sh is now deprecated!

`package.sh` has been deprecated.

Please use [@kintone/plugin-packer](https://www.npmjs.com/package/@kintone/plugin-packer) instead.
It requires [Node.js](https://nodejs.org/).

## Requirement

* A bash shell
Expand Down
9 changes: 9 additions & 0 deletions package.sh
@@ -1,6 +1,15 @@
#!/bin/sh
BASE_DIR=$(cd $(dirname $0); pwd)

echo ""
echo "WARNING!"
echo "--------------------------------"
echo "package.sh has been deprecated."
echo "Please use @kintone/plugin-packer instead."
echo "https://www.npmjs.com/package/@kintone/plugin-packer"
echo "--------------------------------"
echo ""

if [ $# -lt 1 ]; then
echo "usage: $0 PLUGIN_DIR [PRIVATE_KEY_FILE]"
exit 1
Expand Down

0 comments on commit afb91ef

Please sign in to comment.