Skip to content

Commit

Permalink
Fixed invalid url. Closes #137
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverandrich committed Nov 18, 2024
1 parent c9b3895 commit 9cacd9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/django_tailwind_cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_download_url() -> str:
system, machine = get_system_and_machine()
extension = ".exe" if system == "windows" else ""
return (
f"https://github.com/{conf.get_tailwind_cli_src_repo}/releases/download/"
f"https://github.com/{conf.get_tailwind_cli_src_repo()}/releases/download/"
f"v{conf.get_tailwind_cli_version()}/{conf.get_tailwind_cli_asset_name()}-{system}-{machine}{extension}"
)

Expand Down

0 comments on commit 9cacd9a

Please sign in to comment.