Skip to content

Commit bcae68a

Browse files
committed
Format line
1 parent eae18ea commit bcae68a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsc_lib/src/discovery/command_discovery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ fn load_resource_manifest(path: &Path, manifest: &ResourceManifest) -> Result<Ds
693693

694694
fn load_extension_manifest(path: &Path, manifest: &ExtensionManifest) -> Result<DscExtension, DscError> {
695695
if let Err(err) = validate_semver(&manifest.version) {
696-
return Err(DscError::Validation(format!("Invalid manifest {path:?} version value: {err}")));
696+
return Err(DscError::Validation(format!("Invalid manifest {} version value: {err}", path.display())));
697697
}
698698

699699
let mut capabilities: Vec<dscextension::Capability> = vec![];

0 commit comments

Comments
 (0)