Skip to content
Snippets Groups Projects
Commit f48239aa authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't prompt yes/no upon remove if run with -quiet option

for Andre
parent ed2444f5
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -2598,7 +2598,7 @@ function main()
}
alert("This command will remove '" + optval[cmd] +
"' from the local " + (remote ? "and remote ":"") + "database");
if(deny("Are you sure"))
if(!quiet && deny("Are you sure"))
break;
var index = lib.system_index(list, optval[cmd]);
if(index < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment