We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d4738 commit 008ff14Copy full SHA for 008ff14
src/copilot-cli/install.sh
@@ -66,8 +66,8 @@ install_using_github() {
66
prerelease_version="$(git ls-remote --tags https://github.com/github/copilot-cli | tail -1 | awk -F/ '{print $NF}')"
67
download_from_github "https://github.com/github/copilot-cli/releases/download/${prerelease_version}/${cli_filename}"
68
else
69
- echo "Unsupported version value: ${CLI_VERSION}, falling back to latest" >&2
70
- download_from_github "https://github.com/github/copilot-cli/releases/latest/download/${cli_filename}"
+ # Install specific version
+ download_from_github "https://github.com/github/copilot-cli/releases/download/${CLI_VERSION}/${cli_filename}"
71
fi
72
}
73
0 commit comments