From 03642e3d7a78427a08a6ae5578c272b5467b7e64 Mon Sep 17 00:00:00 2001 From: saffronjam Date: Thu, 9 Nov 2023 08:56:03 +0100 Subject: [PATCH] fix minor bug with wrong error checked --- service/deployment_service/github_service/github_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/deployment_service/github_service/github_service.go b/service/deployment_service/github_service/github_service.go index cc1cc45d..393a0e35 100644 --- a/service/deployment_service/github_service/github_service.go +++ b/service/deployment_service/github_service/github_service.go @@ -7,8 +7,8 @@ import ( githubThirdParty "github.com/google/go-github/github" deploymentModel "go-deploy/models/sys/deployment" "go-deploy/pkg/config" + "go-deploy/service/deployment_service/base" "go-deploy/service/resources" - "go-deploy/service/vm_service/base" "log" "strings" )