Skip to content

Commit

Permalink
do not parse as numbers for command (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
itai-codefresh authored Mar 22, 2020
1 parent 2a73765 commit 4080142
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/interface/cli/commands/image/get.cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ const command = new Command({
},
builder: (yargs) => {
return yargs
.parserConfiguration({
'parse-numbers': false,
})
.positional('id', {
describe: 'Docker Image id',
coerce: (value) => value,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codefresh",
"version": "0.43.16",
"version": "0.44.0",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
Expand Down

0 comments on commit 4080142

Please sign in to comment.