diff --git a/install.py b/install.py index 7f33b197..ef29dd7d 100644 --- a/install.py +++ b/install.py @@ -75,7 +75,7 @@ def parse_args(): def build_release_url(ctx: InstallContext) -> str: repo_root = "https://github.com/catppuccin/gtk/releases/download" - release = "v1.0.0-rc1" + release = "v1.0.0-rc2" zip_name = f"catppuccin-{ctx.flavor}-{ctx.accent}-standard+default.zip" return f"{repo_root}/{release}/{zip_name}" @@ -88,7 +88,7 @@ def install(ctx: InstallContext): accent: {ctx.accent} dest: {ctx.dest.absolute()} link: {ctx.link} - + remote_url: {url}""" logger.info(build_info) httprequest = Request(url)