File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ pub struct Build {
22
22
23
23
impl Build {
24
24
/// Entrypoint
25
+ #[ expect( clippy:: too_many_lines, reason = "these lines are fine" ) ]
25
26
pub fn run ( & mut self ) -> anyhow:: Result < ( ) > {
26
27
let spirv_builder_cli_path = self . install . run ( ) ?;
27
28
@@ -102,7 +103,13 @@ impl Build {
102
103
. file_name ( )
103
104
. context ( "Couldn't parse file name from shader module path" ) ?,
104
105
) ;
106
+ log:: debug!( "copying {} to {}" , filepath. display( ) , path. display( ) ) ;
105
107
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
+ ) ;
106
113
let path_relative_to_shader_crate = path
107
114
. relative_to ( & self . install . spirv_install . shader_crate ) ?
108
115
. to_path ( "" ) ;
You can’t perform that action at this time.
0 commit comments