@@ -15,13 +15,13 @@ Usage: install.sh [options]
1515
1616Options:
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
2222Examples:
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
2626EOF
2727}
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 ""
456456echo -e " cd <project> ${MUTED} # Open directory${NC} "
457457echo -e " deepagent-code ${MUTED} # Run command${NC} "
458458echo -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/ "
460460echo -e " "
461461echo -e " "
0 commit comments