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:
6
6
interval : daily
7
7
open-pull-requests-limit : 10
8
8
groups :
9
- cargo :
9
+ cargo-minor :
10
10
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 {
146
146
S : AsRef < OsStr > ,
147
147
{
148
148
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
+ ) ;
150
154
151
155
let run_command = |command : & mut Command | {
152
156
command
@@ -250,7 +254,7 @@ fn is_executable(path: &Path) -> bool {
250
254
let metadata = match path. metadata ( ) {
251
255
Ok ( metadata) => metadata,
252
256
Err ( e) => {
253
- log:: error!( "metadata error: {}" , e ) ;
257
+ log:: error!( "metadata error: {e}" ) ;
254
258
return false ;
255
259
}
256
260
} ;
You can’t perform that action at this time.
0 commit comments