From 858e7aec85ee598c8256cd41135824f918acde62 Mon Sep 17 00:00:00 2001 From: Pavel Jbanov Date: Tue, 12 Aug 2025 15:26:27 -0400 Subject: [PATCH] docs(cli): updated cli install script comments --- bin/install_cli | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/bin/install_cli b/bin/install_cli index b2fcb03ac4..44e8cbf715 100644 --- a/bin/install_cli +++ b/bin/install_cli @@ -11,30 +11,37 @@ : Introduction : ========================================== -# This script allows you to install the latest version of the -# "genkit" command by running: +# This script allows you to install the latest version of the "genkit" command by running: # : curl -sL cli.genkit.dev | bash # -# If you do not want to use this script, you can manually -# download the latest "genkit" binary. +# If you do not want to use this script, you can manually download the latest "genkit" binary. +# +# Linux: # : curl -Lo ./genkit_bin https://storage.googleapis.com/genkit-assets-cli/prod/linux-x64/latest # +# macOS: +# +: curl -Lo ./genkit_bin https://storage.googleapis.com/genkit-assets-cli/prod/darwin-arm64/latest +# +# Windows: +# +: curl -Lo ./genkit_bin.exe https://storage.googleapis.com/genkit-assets-cli/prod/win32-x64/latest.exe +# # Alternatively, you can download a specific version. # -: curl -Lo ./genkit_bin https://storage.googleapis.com/genkit-assets-cli/prod/linux-x64/v1.15.5/genkit +: curl -Lo ./genkit_bin https://storage.googleapis.com/genkit-assets-cli/prod/darwin-arm64/v1.15.5/genkit # # For Windows append ".exe" to the URL. # -: curl -Lo ./genkit_bin https://storage.googleapis.com/genkit-assets-cli/prod/win32-x64/v1.15.5/genkit.exe +: curl -Lo ./genkit_bin.exe https://storage.googleapis.com/genkit-assets-cli/prod/win32-x64/v1.15.5/genkit.exe # -# Note: On Mac, replace "linux" with "darwin" in the URL. # Supported architectures: darwin-x64, darwin-arm64, linux-x64, linux-arm64, win32-x64 # # For full details about installation options for the Genkit CLI # please see our documentation. -# https://genkit.dev +# https://genkit.dev/docs/devtools # # Please report bugs / issues with this script on GitHub. # https://github.com/firebase/genkit