bugfix: default should not be interactive (#304)

This commit is contained in:
cocktailpeanut 2023-03-19 17:44:20 -04:00 committed by GitHub
parent 4545539d71
commit da5303c1ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -867,7 +867,7 @@ int main(int argc, char ** argv) {
}
// enable interactive mode if reverse prompt is specified
if (!antipromptv_inp.size()) {
if (antipromptv_inp.size() != 0) {
params.interactive = true;
}