Update install script to support SSH and HTTPS repository URLs

- Modified the install script to include separate variables for SSH and HTTPS repository URLs, enhancing flexibility for users during the cloning process.
- This change allows users to choose their preferred method of accessing the repository, improving the overall installation experience.
This commit is contained in:
teknium1
2026-02-02 19:19:12 -08:00
parent ef409c6a24
commit aa6394e94f

View File

@@ -24,7 +24,8 @@ $ErrorActionPreference = "Stop"
# Configuration
# ============================================================================
$RepoUrl = "https://github.com/NousResearch/hermes-agent.git"
$RepoUrlSsh = "git@github.com:NousResearch/hermes-agent.git"
$RepoUrlHttps = "https://github.com/NousResearch/hermes-agent.git"
# ============================================================================
# Helper functions