Better ask forgiveness than permission

This commit is contained in:
sharkdp 2020-10-11 21:36:42 +02:00
parent 62e715ff5b
commit bf87f37039
1 changed files with 5 additions and 2 deletions

View File

@ -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