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 b4ad54f commit 133ef80Copy full SHA for 133ef80
cargo-shuttle/src/config.rs
@@ -189,6 +189,9 @@ impl RequestContext {
189
.unwrap_or(project_args.working_directory.clone());
190
191
trace!("looking for Shuttle.toml in {}", workspace_path.display());
192
+ if workspace_path.join("shuttle.toml").exists() {
193
+ eprintln!("WARN: Lowercase 'shuttle.toml' detected, please use 'Shuttle.toml'")
194
+ }
195
let local_manager = LocalConfigManager::new(workspace_path, "Shuttle.toml".to_string());
196
let mut project = Config::new(local_manager);
197
if !project.exists() {
0 commit comments