This commit is contained in:
Kelvin Sherlock 2016-06-15 23:19:34 -04:00
parent 97bcf8259d
commit 701786277b
1 changed files with 3 additions and 4 deletions

View File

@ -524,13 +524,12 @@ int loop_command::execute(Environment &env, const fdmask &fds, bool throwup) {
rv = vector_command::execute(env, newfds);
});
}
catch (continue_command_t &ex) {
continue;
}
catch (break_command_t &ex) {
break;
}
catch (continue_command_t &ex) {
continue;
}
}
env.echo("end");