Skip to content

Commit 5a36774

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
address copilot feedback
1 parent cdef8d2 commit 5a36774

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ if (!$SkipBuild) {
349349
"y2j"
350350
)
351351
$pedantic_unclean_projects = @()
352-
$clippy_unclean_projects = @("tree-sitter-dscexpression", "tree-sitter-ssh-server-config")
353-
$skip_test_projects_on_windows = @("grammars/tree-sitter-dscexpression", "grammars/tree-sitter-ssh-server-config")
352+
$clippy_unclean_projects = @("tree-sitter-dscexpression")
353+
$skip_test_projects_on_windows = @("tree-sitter-dscexpression")
354354

355355
if ($IsWindows) {
356356
$projects += $windows_projects

dsc_lib/src/extensions/dscextension.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ impl DscExtension {
107107
}
108108
};
109109
if !Path::new(&discover_result.manifest_path).is_absolute() {
110-
return Err(DscError::Extension(t!("extensions.dscextension.discoverNotAbsolutePath", extension = self.type_name.clone()).to_string()));
110+
return Err(DscError::Extension(t!("extensions.dscextension.discoverNotAbsolutePath", extension = self.type_name.clone(), path = discover_result.manifest_path.clone()).to_string()));
111111
}
112112
let manifest_path = Path::new(&discover_result.manifest_path);
113113
// Currently we don't support extensions discovering other extensions

0 commit comments

Comments
 (0)