diff --git a/ChangeLog b/ChangeLog index 2a67e93e..e80d6033 100644 --- a/ChangeLog +++ b/ChangeLog @@ -114,6 +114,8 @@ getJSONfromFileTable. * feature(update) exec -> exec(cwd) +* feature(cloudcmd) add bin + 2012.04.22, v0.2.0 diff --git a/README.md b/README.md index 627ac528..941fe70b 100644 --- a/README.md +++ b/README.md @@ -104,11 +104,12 @@ and unpack or just clone repository from github: ``` git clone git://github.com/coderaiser/cloudcmd.git cd cloudcmd + node cloudcmd ``` or install in npm: ``` - npm i cloudcmd - mv node_modules/cloudcmd ./ + npm i cloudcmd -g + cloudcmd ``` Configuration diff --git a/bin/cloudcmd b/bin/cloudcmd new file mode 100755 index 00000000..174f51f0 --- /dev/null +++ b/bin/cloudcmd @@ -0,0 +1,12 @@ +#!/usr/bin/env node + +/* cloudcmd binary + * usage: node cloudcmd + */ +(function(){ + 'use strict'; + + require('../cloudcmd'); + +})(); +