Merge pull request #540 from resin-io/args

resin build: fix mismatch in command line argument signature
This commit is contained in:
Gergely Imreh 2017-05-31 13:05:48 +01:00 committed by GitHub
commit 9e8b09010f
4 changed files with 7 additions and 3 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fixed command line arguments for `resin build`
## [5.10.1] - 2017-05-22
### Fixed

View File

@ -31,7 +31,7 @@ module.exports = {
description: 'The architecture to build for',
alias: 'A'
}, {
signature: 'devicetype',
signature: 'deviceType',
parameter: 'deviceType',
description: 'The type of device this build is for',
alias: 'd'

View File

@ -1304,7 +1304,7 @@ Examples:
The architecture to build for
#### --devicetype, -d <deviceType>
#### --deviceType, -d <deviceType>
The type of device this build is for

View File

@ -45,7 +45,7 @@ module.exports =
alias: 'A'
},
{
signature: 'devicetype'
signature: 'deviceType'
parameter: 'deviceType'
description: 'The type of device this build is for'
alias: 'd'