Skip to content

Commit 4080142

Browse files
do not parse as numbers for command (#426)
1 parent 2a73765 commit 4080142

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/interface/cli/commands/image/get.cmd.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ const command = new Command({
2222
},
2323
builder: (yargs) => {
2424
return yargs
25+
.parserConfiguration({
26+
'parse-numbers': false,
27+
})
2528
.positional('id', {
2629
describe: 'Docker Image id',
2730
coerce: (value) => value,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codefresh",
3-
"version": "0.43.16",
3+
"version": "0.44.0",
44
"description": "Codefresh command line utility",
55
"main": "index.js",
66
"preferGlobal": true,

0 commit comments

Comments
 (0)