summaryrefslogtreecommitdiffhomepage
path: root/install
diff options
context:
space:
mode:
authorCodinCat <[email protected]>2025-07-15 09:13:12 +0900
committerGitHub <[email protected]>2025-07-14 20:13:12 -0400
commitd6eff3b3a31192b3c37e03ebff278cbc8ace2023 (patch)
treebce1fab86d950a24658d45135a9041fa38ef6766 /install
parente63a6d45c1e473c10dd7d5db75b06cba4953a1bc (diff)
downloadopencode-d6eff3b3a31192b3c37e03ebff278cbc8ace2023.tar.gz
opencode-d6eff3b3a31192b3c37e03ebff278cbc8ace2023.zip
improve error handling and logging for GitHub API failures in upgrade and install script (#972)
Diffstat (limited to 'install')
-rwxr-xr-xinstall2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index e18bd7bbf..2a48cc1f4 100755
--- a/install
+++ b/install
@@ -48,7 +48,7 @@ if [ -z "$requested_version" ]; then
url="https://github.com/sst/opencode/releases/latest/download/$filename"
specific_version=$(curl -s https://api.github.com/repos/sst/opencode/releases/latest | awk -F'"' '/"tag_name": "/ {gsub(/^v/, "", $4); print $4}')
- if [[ $? -ne 0 ]]; then
+ if [[ $? -ne 0 || -z "$specific_version" ]]; then
echo "${RED}Failed to fetch version information${NC}"
exit 1
fi