File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -66,10 +66,11 @@ function areOptionsIncompetible(
6666) : boolean {
6767 if ( options . viewTodoOnly ) {
6868 if ( options . apply ) reasons . push ( "--apply cannot be used together with --view-todo" ) ;
69- if ( options . push ) reasons . push ( "--apply cannot be used together with --push" ) ;
70- if ( options . forcePush ) reasons . push ( "--apply cannot be used together with --push -f" ) ;
71- if ( options . branchSequencer ) reasons . push ( "--apply cannot be used together with --branch-sequencer" ) ;
72- if ( options . branchSequencerExec ) reasons . push ( "--apply cannot be used together with --branch-sequencer --exec" ) ;
69+ if ( options . push ) reasons . push ( "--push cannot be used together with --view-todo" ) ;
70+ if ( options . forcePush ) reasons . push ( "--push --force cannot be used together with --view-todo" ) ;
71+ if ( options . branchSequencer ) reasons . push ( "--branch-sequencer cannot be used together with --view-todo" ) ;
72+ if ( options . branchSequencerExec )
73+ reasons . push ( "--branch-sequencer --exec cannot be used together with --view-todo" ) ;
7374 }
7475
7576 /**
You can’t perform that action at this time.
0 commit comments