Skip to content

Commit 9cacd9a

Browse files
committed
Fixed invalid url. Closes #137
1 parent c9b3895 commit 9cacd9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/django_tailwind_cli/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_download_url() -> str:
3434
system, machine = get_system_and_machine()
3535
extension = ".exe" if system == "windows" else ""
3636
return (
37-
f"https://github.com/{conf.get_tailwind_cli_src_repo}/releases/download/"
37+
f"https://github.com/{conf.get_tailwind_cli_src_repo()}/releases/download/"
3838
f"v{conf.get_tailwind_cli_version()}/{conf.get_tailwind_cli_asset_name()}-{system}-{machine}{extension}"
3939
)
4040

0 commit comments

Comments
 (0)