Skip to content

Commit

Permalink
fix: change download url for darwin (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnnoh authored Sep 21, 2024
1 parent a9f6ace commit 1cb5b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/gritql/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def find_install() -> Path:
_debug(f"'grit' found in PATH at {grit_path}")
return Path(grit_path)

platform = "macos" if sys.platform == "darwin" else "linux"
platform = "apple-darwin" if sys.platform == "darwin" else "linux"

dir_name = _cache_dir() / "grit"
install_dir = dir_name / ".install"
Expand Down

0 comments on commit 1cb5b5c

Please sign in to comment.