Try to make 'no queries found' message more clear (#1191)

* try to make 'no queries found' message more clear

* Be more polite
This commit is contained in:
Stephen W 2021-04-26 19:40:33 +12:00 committed by GitHub
parent 5a8418e5fd
commit 212d235334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ pub fn run(url: &str, merge: bool, cargo_args: Vec<String>) -> anyhow::Result<()
if data.is_empty() {
println!(
"{} no queries found; do you have the `offline` feature enabled in sqlx?",
"{} no queries found; please ensure that the `offline` feature is enabled in sqlx",
style("warning:").yellow()
);
}