Skip to content

Commit

Permalink
Fix install command
Browse files Browse the repository at this point in the history
  • Loading branch information
asylumexp committed Jan 10, 2025
1 parent d786074 commit 0116b0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) {
Expand Down

0 comments on commit 0116b0b

Please sign in to comment.