We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b24303 commit c8d63c1Copy full SHA for c8d63c1
prql-compiler/prqlc/src/cli.rs
@@ -292,7 +292,10 @@ impl Command {
292
// it's confusing whether it's waiting for input or not. This
293
// offers the prompt.
294
if input.is_stdin() && atty::is(atty::Stream::Stdin) {
295
- println!("# Enter PRQL, then press ctrl-d or ctrl-z (windows) to compile:\n");
+ #[cfg(unix)]
296
+ eprintln!("Enter PRQL, then press ctrl-d to compile:\n");
297
+ #[cfg(windows)]
298
+ eprintln!("Enter PRQL, then press ctrl-z to compile:\n");
299
}
300
301
let file_tree = input.read_to_tree()?;
0 commit comments