File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
lib/interface/cli/commands/project Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ const command = new Command({
47
47
let projects ;
48
48
if ( id ) {
49
49
let project = await sdk . projects . get ( { id } ) . catch ( ignoreHttpError ) ;
50
- project = project || await sdk . projects . getByName ( { name } ) . catch ( ignoreHttpError ) ;
50
+ project = project || await sdk . projects . getByName ( { name, tags } ) . catch ( ignoreHttpError ) ;
51
51
projects = project ? [ project ] : [ ] ;
52
52
} else {
53
53
const result = await sdk . projects . list ( {
Original file line number Diff line number Diff line change 6515
6515
"type" : " string"
6516
6516
},
6517
6517
"required" : true
6518
+ },
6519
+ {
6520
+ "in" : " query" ,
6521
+ "name" : " tags" ,
6522
+ "schema" : {
6523
+ "type" : " string"
6524
+ }
6518
6525
}
6519
6526
],
6520
6527
"responses" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.52.1 " ,
3
+ "version" : " 0.52.2 " ,
4
4
"description" : " Codefresh command line utility" ,
5
5
"main" : " index.js" ,
6
6
"preferGlobal" : true ,
You can’t perform that action at this time.
0 commit comments