1
0
Fork 0
mirror of synced 2024-06-16 17:35:15 +12:00

Merge pull request #1131 from dcalano/dev

This commit is contained in:
Nick Sweeting 2023-03-30 13:14:17 -06:00 committed by GitHub
commit 32fac5999e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -962,7 +962,7 @@ def setup(out_dir: Path=OUTPUT_DIR) -> None:
PYTHON_BINARY, '-m', 'pip',
'show',
'youtube_dl',
], capture_output=True, text=True, cwd=out_dir).stdout.split('Location: ')[-1].split('\n', 1)[0]
], capture_output=True, text=True, cwd=out_dir).stdout.decode().split('Location: ')[-1].split('\n', 1)[0]
NEW_YOUTUBEDL_BINARY = Path(pkg_path) / 'youtube_dl' / '__main__.py'
os.chmod(NEW_YOUTUBEDL_BINARY, 0o777)
assert NEW_YOUTUBEDL_BINARY.exists(), f'youtube_dl must exist inside {pkg_path}'