Fixed file location in creation script

pull/1312/head
Logan Saso 4 years ago committed by David Peter
parent 6c68198d19
commit 19b55706ee

@ -26,8 +26,9 @@ SKIP_FILENAMES = [
def get_options(source):
source_dirpath = path.dirname(source)
options = BAT_OPTIONS.copy()
if path.exists(path.join(source_dirpath, "bat_options")):
with open(path.join(source, "bat_options"), "r") as f:
options_file = path.join(source_dirpath, "bat_options")
if path.exists(options_file):
with open(options_file, "r") as f:
options += list(map(lambda x: x.rstrip(), f.readlines()))
return options

Loading…
Cancel
Save