From aa6394e94fdfeca5b345ba05dc77ba794149f4e7 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Mon, 2 Feb 2026 19:19:12 -0800 Subject: [PATCH] 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. --- scripts/install.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/install.ps1 b/scripts/install.ps1 index a6679c934..0f97d497e 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -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