From 27a4a0fc4d6805f6eaee022083df85797edb34b0 Mon Sep 17 00:00:00 2001 From: Grok Date: Sat, 6 Jun 2026 15:35:04 +0100 Subject: [PATCH] fix: update install scripts to use correct gralculator repo name in GITEA_BASE URLs All references now consistently use 'gralculator' for the project: - local folder: apps/gralculator - binary: gralculator - remote repo: gmgauthier/gralculator (renamed via tea) - scripts and workflows updated --- scripts/gralculator-install.ps1 | 2 +- scripts/gralculator-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gralculator-install.ps1 b/scripts/gralculator-install.ps1 index 9880ecb..12cbc34 100644 --- a/scripts/gralculator-install.ps1 +++ b/scripts/gralculator-install.ps1 @@ -9,7 +9,7 @@ if (-not $Version) { $Version = $Version.TrimStart('v') -$GITEA_BASE = "https://repos.gmgauthier.com/gmgauthier/galculator" +$GITEA_BASE = "https://repos.gmgauthier.com/gmgauthier/gralculator" $OS = if ($IsWindows) { "windows" } elseif ($IsMacOS) { "darwin" } else { "linux" } $ARCH = if ([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture -eq "X64") { "amd64" } else { "arm64" } diff --git a/scripts/gralculator-install.sh b/scripts/gralculator-install.sh index 8dd8e68..ccf8448 100755 --- a/scripts/gralculator-install.sh +++ b/scripts/gralculator-install.sh @@ -6,7 +6,7 @@ VERSION=${VERSION:-${1:?Provide VERSION env or arg, e.g. VERSION=0.1.0 bash gral # Strip leading 'v' if present VERSION=${VERSION#v} -GITEA_BASE=https://repos.gmgauthier.com/gmgauthier/galculator +GITEA_BASE=https://repos.gmgauthier.com/gmgauthier/gralculator # Platform detection OS=$(uname -s | tr '[:upper:]' '[:lower:]')