This commit is contained in:
Richard Feldman 2023-03-24 20:53:22 -04:00
parent 8d5f443fcd
commit 194e74ec38
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B

View file

@ -94,7 +94,7 @@ fn main() -> io::Result<()> {
if !output_path.exists() || output_path.is_dir() { if !output_path.exists() || output_path.is_dir() {
roc_glue::generate(input_path, output_path, spec_path) roc_glue::generate(input_path, output_path, spec_path)
} else { } else {
eprintln!("`roc glue` requries that the output is a directory. The individual implementations might generate multiple files."); eprintln!("`roc glue` must be given a directory to output into, because the glue might generate multiple files.");
Ok(1) Ok(1)
} }