From 4d71fdd8e0a9053f30d3492449d63600e865f41f Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Mon, 30 Jun 2025 11:45:16 +1000 Subject: [PATCH] Update install-command.tsx --- .../app/scripts/_components/script-items/install-command.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 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 332bb439a..b020811f4 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 { basePath } from "@/config/site-config"; import { getDisplayValueFromType } from "../script-info-blocks"; function getInstallCommand(scriptPath = "", isAlpine = false, useGitea = false) { - const githubUrl = `https://raw.githubusercontent.com/community-scripts/${basePath}/main/${scriptPath}`; - const giteaUrl = `https://git.community-scripts.org/community-scripts/${basePath}/raw/branch/main/${scriptPath}`; + 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; return isAlpine ? `bash -c "$(curl -fsSL ${url})"` : `bash -c "$(curl -fsSL ${url})"`; }