We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e94d98e commit 1c396c9Copy full SHA for 1c396c9
src/openai/cli/_tools/migrate.py
@@ -92,8 +92,8 @@ def install() -> Path:
92
install_dir = dir_name / ".install"
93
target_dir = install_dir / "bin"
94
95
- target_path = target_dir / "marzano"
96
- temp_file = target_dir / "marzano.tmp"
+ target_path = target_dir / "grit"
+ temp_file = target_dir / "grit.tmp"
97
98
if target_path.exists():
99
_debug(f"{target_path} already exists")
@@ -110,7 +110,7 @@ def install() -> Path:
110
arch = _get_arch()
111
_debug(f"Using architecture {arch}")
112
113
- file_name = f"marzano-{arch}-{platform}"
+ file_name = f"grit-{arch}-{platform}"
114
download_url = f"https://github.com/getgrit/gritql/releases/latest/download/{file_name}.tar.gz"
115
116
sys.stdout.write(f"Downloading Grit CLI from {download_url}\n")
0 commit comments