auto set output dir

This commit is contained in:
Cyberes 2023-02-06 21:35:57 -07:00
parent 9fb7b17caf
commit 5ec3c77a5f
1 changed files with 4 additions and 3 deletions

View File

@ -68,7 +68,7 @@ if args.output:
if args.log_dir:
args.log_dir = resolve_path(args.log_dir)
elif not args.output and not args.log_dir:
args.log_dir = resolve_path(Path(os.getcwd(), 'logs'))
args.log_dir = resolve_path(Path(os.getcwd(), 'automated-youtube-dl_logs'))
# print('Must set --log-dir when --output is not.')
# sys.exit(1)
else:
@ -115,8 +115,9 @@ if not re.match(url_regex, str(args.file)) or args.input_datatype in ('txt', 'ya
sys.exit(1)
else:
if not args.output:
print('You must specify an output path with --output when the input is a URL.')
sys.exit(1)
args.output = resolve_path(Path(os.getcwd(), 'automated-youtube-dl_output'))
# print('You must specify an output path with --output when the input is a URL.')
# sys.exit(1)
url_list[str(args.output)] = [args.file]
# Create directories AFTER loading the file