File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
lib/interface/cli/commands/pipeline Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ function _buildBody(data) {
19
19
body . options . noCache = data . noCache ;
20
20
}
21
21
22
+ if ( data . noCfCache ) {
23
+ body . options . noCfCache = data . noCfCache ;
24
+ }
25
+
22
26
if ( data . enableNotifications ) {
23
27
body . options . enableNotifications = data . enableNotifications ;
24
28
}
@@ -58,6 +62,7 @@ function _buildBody(data) {
58
62
class RunExternalCommand extends RunBaseCommand {
59
63
async runImpl ( request ) {
60
64
const { pipelineName, options } = request ;
65
+ console . log ( _buildBody ( options ) ) ;
61
66
this . workflowId = await sdk . pipelines . run ( { name : pipelineName } , _buildBody ( options ) ) ;
62
67
if ( this . executionRequests . length === 1 ) {
63
68
if ( this . argv . detach ) {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codefresh" ,
3
- "version" : " 0.33.1 " ,
3
+ "version" : " 0.33.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