This repository was archived by the owner on Apr 15, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ pub struct Build {
2222
2323impl Build {
2424 /// Entrypoint
25+ #[ expect( clippy:: too_many_lines, reason = "these lines are fine" ) ]
2526 pub fn run ( & mut self ) -> anyhow:: Result < ( ) > {
2627 let spirv_builder_cli_path = self . install . run ( ) ?;
2728
@@ -102,7 +103,13 @@ impl Build {
102103 . file_name ( )
103104 . context ( "Couldn't parse file name from shader module path" ) ?,
104105 ) ;
106+ log:: debug!( "copying {} to {}" , filepath. display( ) , path. display( ) ) ;
105107 std:: fs:: copy ( & filepath, & path) ?;
108+ log:: debug!(
109+ "linkage of {} relative to {}" ,
110+ path. display( ) ,
111+ self . install. spirv_install. shader_crate. display( )
112+ ) ;
106113 let path_relative_to_shader_crate = path
107114 . relative_to ( & self . install . spirv_install . shader_crate ) ?
108115 . to_path ( "" ) ;
You can’t perform that action at this time.
0 commit comments