File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -593,7 +593,7 @@ async def do_the_thing(base_dir):
593593 if path .endswith ('"' ):
594594 path = path [:- 1 ]
595595
596- is_binary = await get_mkbrr_path (meta )
596+ is_binary = await get_mkbrr_path (meta , base_dir )
597597 if not meta ['mkbrr' ]:
598598 meta ['mkbrr' ] = int (config ['DEFAULT' ].get ('mkbrr' , False ))
599599 if meta ['mkbrr' ] and not is_binary :
@@ -761,9 +761,9 @@ async def do_the_thing(base_dir):
761761 reset_terminal ()
762762
763763
764- async def get_mkbrr_path (meta ):
764+ async def get_mkbrr_path (meta , base_dir = None ):
765765 try :
766- mkbrr_path = await ensure_mkbrr_binary (meta [ ' base_dir' ] , debug = meta ['debug' ], version = "v1.8.1" )
766+ mkbrr_path = await ensure_mkbrr_binary (base_dir , debug = meta ['debug' ], version = "v1.8.1" )
767767 return mkbrr_path
768768 except Exception as e :
769769 console .print (f"[red]Error setting up mkbrr binary: { e } [/red]" )
You can’t perform that action at this time.
0 commit comments