From bda30403daff70a94c3155aa9aef67e123047948 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:17:21 -0800 Subject: [PATCH] Fix script path formatting in InstallMethod component (#909) --- frontend/src/app/json-editor/_components/InstallMethod.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/json-editor/_components/InstallMethod.tsx b/frontend/src/app/json-editor/_components/InstallMethod.tsx index 85368999..792ec403 100644 --- a/frontend/src/app/json-editor/_components/InstallMethod.tsx +++ b/frontend/src/app/json-editor/_components/InstallMethod.tsx @@ -34,7 +34,7 @@ function InstallMethod({ setScript((prev) => { const method = InstallMethodSchema.parse({ type: "default", - script: `/${prev.type}/${prev.slug}.sh`, + script: `${prev.type}/${prev.slug}.sh`, resources: { cpu: null, ram: null,