File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,11 @@ updates:
66 interval : daily
77 open-pull-requests-limit : 10
88 groups :
9- cargo :
9+ cargo-minor :
1010 patterns : ["*"]
11+ update-types :
12+ - ' minor'
13+ cargo-patch :
14+ patterns : ["*"]
15+ update-types :
16+ - ' patch'
Original file line number Diff line number Diff line change @@ -146,7 +146,11 @@ impl HookPaths {
146146 S : AsRef < OsStr > ,
147147 {
148148 let hook = self . hook . clone ( ) ;
149- log:: trace!( "run hook '{:?}' in '{:?}'" , hook, self . pwd) ;
149+ log:: trace!(
150+ "run hook '{}' in '{}'" ,
151+ hook. display( ) ,
152+ self . pwd. display( )
153+ ) ;
150154
151155 let run_command = |command : & mut Command | {
152156 command
@@ -250,7 +254,7 @@ fn is_executable(path: &Path) -> bool {
250254 let metadata = match path. metadata ( ) {
251255 Ok ( metadata) => metadata,
252256 Err ( e) => {
253- log:: error!( "metadata error: {}" , e ) ;
257+ log:: error!( "metadata error: {e}" ) ;
254258 return false ;
255259 }
256260 } ;
You can’t perform that action at this time.
0 commit comments