Skip to content

Commit

Permalink
Replace version with version-range
Browse files Browse the repository at this point in the history
  • Loading branch information
FokkeZB committed Dec 12, 2014
1 parent bd90305 commit 3532ccd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bin/gittio.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ program
.option('-p, --platform <platform>', 'apply to a specific platform only');

var install_cmd = program.command('install')
.usage('<id>@<version>:<platform>')
.usage('<id>@<version-range>:<platform>')
.description('install all missing modules and widgets')
.option('-t, --type <type>', 'widget or module (default: both)')
.action(install);
Expand All @@ -31,12 +31,12 @@ program.command('install <id>')
.description('install the latest version');

// ony here for help
program.command('install <id>@<version>')
.description('install a specific version');
program.command('install <id>@<version-range>')
.description('install a specific version (range)');

// ony here for help
program.command('install <id>@<version>:<platform>')
.description('install a specific version for a specific platform');
program.command('install <id>@<version-range>:<platform>')
.description('install a specific version (range) for a specific platform');

// create alias command
var install_alias = program.command('i')
Expand Down

0 comments on commit 3532ccd

Please sign in to comment.