Skip to content

Commit 1c396c9

Browse files
authoredDec 16, 2024
fix(cli/migrate): change grit binaries prefix (#1951)
1 parent e94d98e commit 1c396c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/openai/cli/_tools/migrate.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ def install() -> Path:
9292
install_dir = dir_name / ".install"
9393
target_dir = install_dir / "bin"
9494

95-
target_path = target_dir / "marzano"
96-
temp_file = target_dir / "marzano.tmp"
95+
target_path = target_dir / "grit"
96+
temp_file = target_dir / "grit.tmp"
9797

9898
if target_path.exists():
9999
_debug(f"{target_path} already exists")
@@ -110,7 +110,7 @@ def install() -> Path:
110110
arch = _get_arch()
111111
_debug(f"Using architecture {arch}")
112112

113-
file_name = f"marzano-{arch}-{platform}"
113+
file_name = f"grit-{arch}-{platform}"
114114
download_url = f"https://github.com/getgrit/gritql/releases/latest/download/{file_name}.tar.gz"
115115

116116
sys.stdout.write(f"Downloading Grit CLI from {download_url}\n")

0 commit comments

Comments
 (0)