From e4d47ec90536ecad25b45edc047fb08bac1e5ef8 Mon Sep 17 00:00:00 2001 From: Xanarch Date: Wed, 3 Jun 2026 21:55:53 -0400 Subject: [PATCH] chore: initial scaffold --- tools/init_repo.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/init_repo.ps1 b/tools/init_repo.ps1 index a22d0c6..1123839 100644 --- a/tools/init_repo.ps1 +++ b/tools/init_repo.ps1 @@ -1,7 +1,7 @@ param( [string]$ForgejoUrl = 'https://git.raog.net', - [Parameter(Mandatory)][string]$User, - [Parameter(Mandatory)][string]$Repo + [string]$User = 'xanarch', + [string]$Repo = 'xanarch-td' ) $Remote = $ForgejoUrl + '/' + $User + '/' + $Repo + '.git'