File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class Recipe {
4646 module : OperationConfig [ c . op ] . module ,
4747 ingValues : c . args ,
4848 breakpoint : c . breakpoint ,
49- disabled : c . disabled || c . op === "Comment" ,
49+ disabled : c . disabled ,
5050 } ) ;
5151 } ) ;
5252 }
Original file line number Diff line number Diff line change @@ -140,6 +140,13 @@ class App {
140140 // Remove all current indicators
141141 this . manager . recipe . updateBreakpointIndicator ( false ) ;
142142
143+ if ( this . getRecipeConfig ( ) [ this . progress ] && ( this . getRecipeConfig ( ) [ this . progress ] . disabled || this . getRecipeConfig ( ) [ this . progress ] . op === "Comment" ) ) {
144+ // Skip disabled operations and comments
145+ // This makes stepping through the recipe work correctly
146+ this . progress ++ ;
147+ return this . bake ( step ) ;
148+ }
149+
143150 this . manager . worker . bake (
144151 this . getRecipeConfig ( ) , // The configuration of the recipe
145152 this . options , // Options set by the user
You can’t perform that action at this time.
0 commit comments