File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed
lib/interface/cli/commands/pipeline Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 1
1
const debug = require ( 'debug' ) ( 'codefresh:cli:run:pipeline' ) ;
2
- const colors = require ( 'colors' ) ;
3
2
const Command = require ( '../../Command' ) ;
4
3
const { crudFilenameOption } = require ( '../../helpers/general' ) ;
5
4
const RunLocalCommand = require ( './run.local' ) ;
@@ -24,14 +23,6 @@ const run = new Command({
24
23
} ,
25
24
builder : ( yargs ) => {
26
25
yargs
27
- . check ( ( argv ) => {
28
- const { trigger, branch, sha } = argv ;
29
-
30
- if ( ( branch || sha ) && ! trigger ) {
31
- console . log ( colors . yellow ( 'Deprecation warning: usage of --sha or --branch without --trigger flag is deprecated' ) ) ;
32
- }
33
- return true ;
34
- } )
35
26
. option ( 'trigger' , {
36
27
describe : 'Trigger id or name' ,
37
28
alias : 't' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.81.3 " ,
3
+ "version" : " 0.81.4 " ,
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