From 0116b0b5a782b9880ed90ae221ffce0cefad97a1 Mon Sep 17 00:00:00 2001 From: Sam Heinz <54530346+asylumexp@users.noreply.github.com> Date: Sat, 11 Jan 2025 03:47:13 +1000 Subject: [PATCH] Fix install command --- .../src/app/scripts/_components/ScriptItems/InstallCommand.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx b/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx index 43804679..6237f20b 100644 --- a/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx +++ b/frontend/src/app/scripts/_components/ScriptItems/InstallCommand.tsx @@ -5,7 +5,7 @@ import { Script } from "@/lib/types"; import { getDisplayValueFromType } from "../ScriptInfoBlocks"; const getInstallCommand = (scriptPath?: string, isAlpine = false) => { - return `bash -c "$(wget -q${isAlpine ? "" : "L"}O - https://github.com/asylumexp/${basePath}/raw/main/${scriptPath})"`; + return `bash -c "$(wget -q${isAlpine ? "" : "L"}O - https://github.com/asylumexp/Proxmox/raw/main/${scriptPath})"`; }; export default function InstallCommand({ item }: { item: Script }) {