fix: update install scripts to use correct gralculator repo name in GITEA_BASE URLs
Some checks failed
CI / Test (push) Successful in 37s
CI / Lint (push) Failing after 28s
CI / Build (push) Has been skipped

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
This commit is contained in:
Grok 2026-06-06 15:35:04 +01:00
parent 428acea198
commit 27a4a0fc4d
2 changed files with 2 additions and 2 deletions

View File

@ -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" }

View File

@ -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:]')