1
0
Fork 0
mirror of synced 2024-06-02 10:34:43 +12:00

fix cookies file arg is path

This commit is contained in:
Nick Sweeting 2021-01-20 19:13:53 -05:00
parent 6c35b12fb9
commit ef7711ffa0
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
name: Build pip package
name: Build Pip package
on:
workflow_dispatch:

View file

@ -66,7 +66,7 @@ def save_wget(link: Link, out_dir: Optional[Path]=None, timeout: int=TIMEOUT) ->
*(['--warc-file={}'.format(str(warc_path))] if SAVE_WARC else []),
*(['--page-requisites'] if SAVE_WGET_REQUISITES else []),
*(['--user-agent={}'.format(WGET_USER_AGENT)] if WGET_USER_AGENT else []),
*(['--load-cookies', COOKIES_FILE] if COOKIES_FILE else []),
*(['--load-cookies', str(COOKIES_FILE)] if COOKIES_FILE else []),
*(['--compression=auto'] if WGET_AUTO_COMPRESSION else []),
*([] if SAVE_WARC else ['--timestamping']),
*([] if CHECK_SSL_VALIDITY else ['--no-check-certificate', '--no-hsts']),