mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 21:25:56 +00:00
Better ask forgiveness than permission
This commit is contained in:
parent
62e715ff5b
commit
bf87f37039
@ -24,12 +24,15 @@ SKIP_FILENAMES = [
|
||||
|
||||
|
||||
def get_options(source):
|
||||
source_dirpath = path.dirname(source)
|
||||
options = BAT_OPTIONS.copy()
|
||||
|
||||
source_dirpath = path.dirname(source)
|
||||
options_file = path.join(source_dirpath, "bat_options")
|
||||
if path.exists(options_file):
|
||||
try:
|
||||
with open(options_file, "r") as f:
|
||||
options += list(map(lambda x: x.rstrip(), f.readlines()))
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
return options
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user