From 733d1baab72bbc33780a355f4f068b376c2c0832 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 30 Jun 2025 12:17:27 +1000 Subject: [PATCH] Update install-command.tsx --- .../scripts/_components/script-items/install-command.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/scripts/_components/script-items/install-command.tsx b/frontend/src/app/scripts/_components/script-items/install-command.tsx index f7ed58793..48df787ab 100644 --- a/frontend/src/app/scripts/_components/script-items/install-command.tsx +++ b/frontend/src/app/scripts/_components/script-items/install-command.tsx @@ -10,8 +10,8 @@ import { getDisplayValueFromType } from "../script-info-blocks"; function getInstallCommand(scriptPath = "", isAlpine = false, useGitea = false) { const githubUrl = `https://raw.githubusercontent.com/asylumexp/Proxmox/main/${scriptPath}`; - const giteaUrl = `https://git.community-scripts.org/asylumexp/Proxmox/raw/branch/main/${scriptPath}`; - const url = useGitea ? giteaUrl : githubUrl; + // const giteaUrl = `https://git.community-scripts.org/asylumexp/Proxmox/raw/branch/main/${scriptPath}`; + const url = useGitea ? githubUrl : githubUrl; return isAlpine ? `bash -c "$(curl -fsSL ${url})"` : `bash -c "$(curl -fsSL ${url})"`; } @@ -91,9 +91,8 @@ export default function InstallCommand({ item }: { item: Script }) { When to use Gitea: {" "} - GitHub may have issues including slow connections, delayed updates after bug - fixes, no IPv6 support, API rate limits (60/hour). Use our Gitea mirror as a reliable alternative when - experiencing these issues. + Gitea is not supported, as this is a mirror specifically of the upstream repo. + I have left the option here in case this changes in the future. );