Skip to content

Commit 57be030

Browse files
committed
fix(install): rebrand install script to the DeepAgent release line
- Usage/examples now point at https://deepagent.ltd/install (was the dead deepagent-code.ai domain) - Download + version probes use the deepagent-ltd/deepagent-code releases (was the migration-era lessweb/anomalyco orgs) - Version example updated to 2.0.0-beta.0; footer link -> ai.deepagent.ltd
1 parent 51ab16c commit 57be030

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

install

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Usage: install.sh [options]
1515
1616
Options:
1717
-h, --help Display this help message
18-
-v, --version <version> Install a specific version (e.g., 1.0.180)
18+
-v, --version <version> Install a specific version (e.g., 2.0.0-beta.0)
1919
-b, --binary <path> Install from a local binary instead of downloading
2020
--no-modify-path Don't modify shell config files (.zshrc, .bashrc, etc.)
2121
2222
Examples:
23-
curl -fsSL https://deepagent-code.ai/install | bash
24-
curl -fsSL https://deepagent-code.ai/install | bash -s -- --version 1.0.180
23+
curl -fsSL https://deepagent.ltd/install | bash
24+
curl -fsSL https://deepagent.ltd/install | bash -s -- --version 2.0.0-beta.0
2525
./install --binary /path/to/deepagent-code
2626
EOF
2727
}
@@ -181,8 +181,8 @@ else
181181
fi
182182

183183
if [ -z "$requested_version" ]; then
184-
url="https://github.com/lessweb/deepagent-code/releases/latest/download/$filename"
185-
specific_version=$(curl -s https://api.github.com/repos/anomalyco/deepagent-code/releases/latest | sed -n 's/.*"tag_name": *"v\([^"]*\)".*/\1/p')
184+
url="https://github.com/deepagent-ltd/deepagent-code/releases/latest/download/$filename"
185+
specific_version=$(curl -s https://api.github.com/repos/deepagent-ltd/deepagent-code/releases/latest | sed -n 's/.*"tag_name": *"v\([^"]*\)".*/\1/p')
186186

187187
if [[ $? -ne 0 || -z "$specific_version" ]]; then
188188
echo -e "${RED}Failed to fetch version information${NC}"
@@ -191,14 +191,14 @@ else
191191
else
192192
# Strip leading 'v' if present
193193
requested_version="${requested_version#v}"
194-
url="https://github.com/lessweb/deepagent-code/releases/download/v${requested_version}/$filename"
194+
url="https://github.com/deepagent-ltd/deepagent-code/releases/download/v${requested_version}/$filename"
195195
specific_version=$requested_version
196196

197197
# Verify the release exists before downloading
198-
http_status=$(curl -sI -o /dev/null -w "%{http_code}" "https://github.com/lessweb/deepagent-code/releases/tag/v${requested_version}")
198+
http_status=$(curl -sI -o /dev/null -w "%{http_code}" "https://github.com/deepagent-ltd/deepagent-code/releases/tag/v${requested_version}")
199199
if [ "$http_status" = "404" ]; then
200200
echo -e "${RED}Error: Release v${requested_version} not found${NC}"
201-
echo -e "${MUTED}Available releases: https://github.com/lessweb/deepagent-code/releases${NC}"
201+
echo -e "${MUTED}Available releases: https://github.com/deepagent-ltd/deepagent-code/releases${NC}"
202202
exit 1
203203
fi
204204
fi
@@ -456,6 +456,6 @@ echo -e ""
456456
echo -e "cd <project> ${MUTED}# Open directory${NC}"
457457
echo -e "deepagent-code ${MUTED}# Run command${NC}"
458458
echo -e ""
459-
echo -e "${MUTED}For more information visit ${NC}https://deepagent-code.ai/docs"
459+
echo -e "${MUTED}For more information visit ${NC}https://ai.deepagent.ltd/"
460460
echo -e ""
461461
echo -e ""

0 commit comments

Comments
 (0)