Update InstallCommand.tsx

This commit is contained in:
CanbiZ 2025-03-24 12:31:28 +01:00
parent 23e2e5857b
commit f7b418e7db

View File

@ -4,7 +4,7 @@ import { basePath } from "@/config/siteConfig";
import { Script } from "@/lib/types"; import { Script } from "@/lib/types";
import { getDisplayValueFromType } from "../ScriptInfoBlocks"; import { getDisplayValueFromType } from "../ScriptInfoBlocks";
const getInstallCommand = (scriptPath = "") => { const getInstallCommand = (scriptPath = "", isAlpine = false) => {
return `bash -c "$(curl -fsSL https://github.com/community-scripts/${basePath}/raw/main/${scriptPath})"`; return `bash -c "$(curl -fsSL https://github.com/community-scripts/${basePath}/raw/main/${scriptPath})"`;
}; };