From 26b12fad728aa7b88350306923e58fd02244c866 Mon Sep 17 00:00:00 2001 From: mountain Date: Tue, 13 Jun 2023 16:25:32 +0900 Subject: [PATCH] =?UTF-8?q?=ED=81=B4=EB=9D=BC=EC=9D=B4=EC=96=B8=ED=8A=B8?= =?UTF-8?q?=20=EB=8B=A4=EC=9A=B4=EB=A1=9C=EB=93=9C=20url=EC=9D=80=20deploy?= =?UTF-8?q?s=EB=A1=9C=20=EC=8B=9C=EC=9E=91=ED=95=98=EB=8A=94=EA=B2=8C=20?= =?UTF-8?q?=EB=A7=9E=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/http_api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/http_api.go b/server/http_api.go index 8b29c90..679356d 100644 --- a/server/http_api.go +++ b/server/http_api.go @@ -180,8 +180,8 @@ func (h *houstonHandler) Deploy(w http.ResponseWriter, r *http.Request) { shared.DeployRequest{ Name: name, Version: version, - Url: path.Join(relPath, latestFilename), - Config: path.Join(h.deployPath, name, "config", "config.json"), + Url: path.Join("deploys", name, version, latestFilename), + Config: path.Join("deploys", name, "config", "config.json"), }, targets, ))