Skip to content

Commit dda83fb

Browse files
zhanshuyouclaude
andcommitted
feat(installer): flatten highlights list
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 04dd467 commit dda83fb

2 files changed

Lines changed: 12 additions & 16 deletions

File tree

install.ps1

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,12 @@ function Write-NextSteps {
167167
Write-Host (" 3. {0,-30} {1}" -f "$BinName collection --help", "Manage collections")
168168
Write-Host ""
169169
Write-Host "Highlights:" -ForegroundColor White
170-
Write-Host " Cloud:"
171-
Write-Host (" * {0,-14} - ``{1} cluster create`` / ``scale`` / ``suspend``" -f "Clusters", $BinName)
172-
Write-Host (" * {0,-14} - bulk load data with ``{1} import``" -f "Import jobs", $BinName)
173-
Write-Host (" * {0,-14} - ``{1} backup create`` / ``restore``" -f "Backup", $BinName)
174-
Write-Host " Data:"
175-
Write-Host (" * {0,-14} - ``{1} vector search`` / ``query`` / ``insert``" -f "Vector ops", $BinName)
176-
Write-Host (" * {0,-14} - ``{1} index create`` / ``list`` / ``describe``" -f "Indexes", $BinName)
177-
Write-Host (" * {0,-14} - ``{1} user`` / ``{1} role`` (Dedicated only)" -f "Access ctrl", $BinName)
170+
Write-Host (" * {0,-14} - ``{1} cluster create`` / ``scale`` / ``suspend``" -f "Clusters", $BinName)
171+
Write-Host (" * {0,-14} - bulk load data with ``{1} import``" -f "Import jobs", $BinName)
172+
Write-Host (" * {0,-14} - ``{1} backup create`` / ``restore``" -f "Backup", $BinName)
173+
Write-Host (" * {0,-14} - ``{1} vector search`` / ``query`` / ``insert``" -f "Vector ops", $BinName)
174+
Write-Host (" * {0,-14} - ``{1} index create`` / ``list`` / ``describe``" -f "Indexes", $BinName)
175+
Write-Host (" * {0,-14} - ``{1} user`` / ``{1} role`` (Dedicated only)" -f "Access ctrl", $BinName)
178176
Write-Host ""
179177
Write-Host "Docs: https://docs.zilliz.com/reference/cli/overview"
180178
Write-Host ""

install.sh

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -219,14 +219,12 @@ print_next_steps() {
219219
printf " 3. %-30s %s\n" "${BIN_NAME} collection --help" "Manage collections"
220220
printf "\n"
221221
printf "${BOLD}Highlights:${RESET}\n"
222-
printf " Cloud:\n"
223-
printf " • %-14s — \`%s cluster create\` / \`scale\` / \`suspend\`\n" "Clusters" "${BIN_NAME}"
224-
printf " • %-14s — bulk load data with \`%s import\`\n" "Import jobs" "${BIN_NAME}"
225-
printf " • %-14s — \`%s backup create\` / \`restore\`\n" "Backup" "${BIN_NAME}"
226-
printf " Data:\n"
227-
printf " • %-14s — \`%s vector search\` / \`query\` / \`insert\`\n" "Vector ops" "${BIN_NAME}"
228-
printf " • %-14s — \`%s index create\` / \`list\` / \`describe\`\n" "Indexes" "${BIN_NAME}"
229-
printf " • %-14s — \`%s user\` / \`%s role\` (Dedicated only)\n" "Access ctrl" "${BIN_NAME}" "${BIN_NAME}"
222+
printf " • %-14s — \`%s cluster create\` / \`scale\` / \`suspend\`\n" "Clusters" "${BIN_NAME}"
223+
printf " • %-14s — bulk load data with \`%s import\`\n" "Import jobs" "${BIN_NAME}"
224+
printf " • %-14s — \`%s backup create\` / \`restore\`\n" "Backup" "${BIN_NAME}"
225+
printf " • %-14s — \`%s vector search\` / \`query\` / \`insert\`\n" "Vector ops" "${BIN_NAME}"
226+
printf " • %-14s — \`%s index create\` / \`list\` / \`describe\`\n" "Indexes" "${BIN_NAME}"
227+
printf " • %-14s — \`%s user\` / \`%s role\` (Dedicated only)\n" "Access ctrl" "${BIN_NAME}" "${BIN_NAME}"
230228
printf "\n"
231229
printf "${BOLD}Docs:${RESET} https://docs.zilliz.com/reference/cli/overview\n"
232230
printf "\n"

0 commit comments

Comments
 (0)