From 00f5b2e0014e7afe0c352fc28a94eeb5fa977137 Mon Sep 17 00:00:00 2001 From: DuProcess <273172371+DuProcess@users.noreply.github.com> Date: Tue, 30 Jun 2026 19:54:16 -0400 Subject: [PATCH] Default Windows installer to Dosh repo --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index e675c40..c630331 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1,7 +1,7 @@ param( [ValidateSet("client")] [string]$Role = $(if ($env:DOSH_ROLE) { $env:DOSH_ROLE } else { "client" }), - [string]$Repo = $env:DOSH_REPO, + [string]$Repo = $(if ($env:DOSH_REPO) { $env:DOSH_REPO } else { "https://git.palav.dev/Palav/dosh.git" }), [string]$Server = $env:DOSH_SERVER, [string]$DoshHost = $(if ($env:DOSH_HOST) { $env:DOSH_HOST } else { $env:DOSH_DOSH_HOST }), [int]$Port = $(if ($env:DOSH_PORT) { [int]$env:DOSH_PORT } else { 50000 }),