unbreak --pin option for bar commands

This commit is contained in:
Jonathan Shook 2023-12-10 21:17:36 -06:00
parent 4fa099fb45
commit 42127a9d52

View File

@ -496,7 +496,7 @@ public class NBCLIArgsFile {
}
String opt = iter.next();
if (!opt.startsWith("-") || reservedPredicate.test(opt)) {
if (!opt.startsWith("-")) {
throw new RuntimeException("Arguments following the --pin option must not" +
" be commands like '" + opt + "'");
}