Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #384 from nodejitsu/deploy-publish
[minor] Add `publish` as alias for `jitsu deploy`.
  • Loading branch information
mmalecki committed Feb 11, 2013
2 parents 968035b + 68fd88f commit 5c023b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/jitsu/alias.js
Expand Up @@ -4,14 +4,15 @@
* (C) 2010, Nodejitsu Inc.
*
*/

var jitsu = require('../jitsu');

//
// Alias the appropriate commands for simplier CLI usage
//
jitsu.alias('destroy', { resource: 'apps', command: 'destroy' });
jitsu.alias('deploy', { resource: 'apps', command: 'deploy' });
jitsu.alias('publish', { resource: 'apps', command: 'deploy' });
jitsu.alias('d', { resource: 'apps', command: 'deploy' });
jitsu.alias('push', { resource: 'apps', command: 'deploy' });
jitsu.alias('list', { resource: 'apps', command: 'list' });
Expand Down

0 comments on commit 5c023b2

Please sign in to comment.