summaryrefslogtreecommitdiff
path: root/src/main/command_executor.cpp
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2019-08-14 13:12:19 -0700
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-08-14 15:12:19 -0500
commit044891b406eb3ee143403ad8fecd7acb99d17ecb (patch)
treef90d35b378da21c2fe889149eb974709292af609 /src/main/command_executor.cpp
parent29639a7df6ddf105803431cc85888c9416af6af6 (diff)
Remove option --continued-execution. (#3189)
Diffstat (limited to 'src/main/command_executor.cpp')
-rw-r--r--src/main/command_executor.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/main/command_executor.cpp b/src/main/command_executor.cpp
index 7e46b163b..241ca2b8f 100644
--- a/src/main/command_executor.cpp
+++ b/src/main/command_executor.cpp
@@ -89,9 +89,10 @@ bool CommandExecutor::doCommand(Command* cmd)
// assume no error
bool status = true;
- for(CommandSequence::iterator subcmd = seq->begin();
- (status || d_options.getContinuedExecution()) && subcmd != seq->end();
- ++subcmd) {
+ for (CommandSequence::iterator subcmd = seq->begin();
+ status && subcmd != seq->end();
+ ++subcmd)
+ {
status = doCommand(*subcmd);
}
@@ -183,7 +184,8 @@ bool CommandExecutor::doCommandSingleton(Command* cmd)
}
for (const auto& getterCommand : getterCommands) {
status = doCommandSingleton(getterCommand.get());
- if (!status && !d_options.getContinuedExecution()) {
+ if (!status)
+ {
break;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback