Fix install command

This commit is contained in:
Sam Heinz
2025-01-11 03:47:13 +10:00
parent d7860740a7
commit 0116b0b5a7

View File

@@ -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 }) {