summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael Denkowski <mdenkows@cs.cmu.edu>2013-07-30 16:41:53 -0700
committerMichael Denkowski <mdenkows@cs.cmu.edu>2013-07-30 16:41:53 -0700
commit8730f338e6bd0e361d9f6ff574a7000042e984d2 (patch)
treea1f0794f214c8d3517d0dfcbade46522eedfb9d4 /utils
parentb45013c6272375220a24c6c1bb9867b1d5055f06 (diff)
Allow reading pairs of lines from stdin, easy force alignment script
Diffstat (limited to 'utils')
-rw-r--r--utils/atools.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/atools.cc b/utils/atools.cc
index 24406b71..1726c4ac 100644
--- a/utils/atools.cc
+++ b/utils/atools.cc
@@ -299,8 +299,7 @@ void InitCommandLine(unsigned argc, char** argv, po::variables_map* conf) {
exit(1);
}
if ((*conf)["input_1"].as<string>() == "-" && (*conf)["input_2"].as<string>() == "-") {
- cerr << "Both inputs cannot be STDIN\n";
- exit(1);
+ cerr << "Both inputs STDIN, reading PAIRS of lines\n";
}
} else {
if (conf->count("input_2") != 0) {