Skip to content

Commit

Permalink
Print the cache dir in twitch-dl env
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Sep 8, 2024
1 parent 7d003ac commit 2eb8fa8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions twitchdl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import click

from twitchdl import __version__
from twitchdl.cache import get_cache_dir
from twitchdl.entities import DownloadOptions
from twitchdl.exceptions import ConsoleError
from twitchdl.naming import DEFAULT_OUTPUT_TEMPLATE
Expand Down Expand Up @@ -348,6 +349,7 @@ def env():
click.echo(f"twitch-dl {__version__}")
click.echo(f"Python {sys.version}")
click.echo(f"Platform: {platform.platform()}")
click.echo(f"Cache dir: {get_cache_dir()}")


@cli.command()
Expand Down

0 comments on commit 2eb8fa8

Please sign in to comment.