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 bf32c1f commit 50bfabfCopy full SHA for 50bfabf
cli/src/config.rs
@@ -117,9 +117,9 @@ impl TapeConfig {
117
match Self::load_from_path(&default_path) {
118
Ok(config) => Ok(config),
119
Err(TapeConfigError::ConfigFileNotFound) => {
120
- print_info("tape.toml not found, creating default configuration...");
+ print_info("No configuration found, creating default tape.toml...");
121
let config = Self::create_default()?;
122
- print_info("✓ Default configuration created successfully");
+ print_info(&format!("✓ Created default configuration at {:?}", default_path));
123
Ok(config)
124
},
125
Err(e) => Err(e),
0 commit comments