diff --git a/installers/install.ps1 b/installers/install.ps1 index 8efb9620..1bc3d626 100644 --- a/installers/install.ps1 +++ b/installers/install.ps1 @@ -220,7 +220,7 @@ if ($InstallMethod -eq "standalone") { try { $BaseUrl = "https://raw.githubusercontent.com/kaitranntt/ccs/main" - Invoke-WebRequest -Uri "$BaseUrl/ccs.ps1" -OutFile "$CcsDir\ccs.ps1" -UseBasicParsing + Invoke-WebRequest -Uri "$BaseUrl/lib/ccs.ps1" -OutFile "$CcsDir\ccs.ps1" -UseBasicParsing Write-Host "| [OK] Downloaded ccs.ps1" } catch { Write-Host "|" diff --git a/installers/install.sh b/installers/install.sh index c8807736..c7faf889 100755 --- a/installers/install.sh +++ b/installers/install.sh @@ -398,7 +398,7 @@ if [[ "$INSTALL_METHOD" == "standalone" ]]; then exit 1 fi - if curl -fsSL https://raw.githubusercontent.com/kaitranntt/ccs/main/ccs -o "$CCS_DIR/ccs"; then + if curl -fsSL https://raw.githubusercontent.com/kaitranntt/ccs/main/lib/ccs -o "$CCS_DIR/ccs"; then chmod +x "$CCS_DIR/ccs" ln -sf "$CCS_DIR/ccs" "$INSTALL_DIR/ccs" echo "| [OK] Downloaded executable"