From 74d6fa121a4373aa6b590c04c7c56facdf3a8a04 Mon Sep 17 00:00:00 2001 From: electricface Date: Thu, 7 Aug 2025 11:39:27 +0800 Subject: [PATCH] chore: update GOPATH in makefile Streamlined the GOPATH by removing redundant parts. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 23b129913..4ab0e9ed4 100644 --- a/makefile +++ b/makefile @@ -5,7 +5,7 @@ GOPKG_PREFIX = github.com/linuxdeepin/lastore-daemon GOPATH_DIR = gopath pwd := ${shell pwd} -GoPath := GOPATH=${pwd}:${pwd}/vendor:${CURDIR}/${GOPATH_DIR}:${GOPATH} +GoPath := GOPATH=${CURDIR}/${GOPATH_DIR}:${GOPATH} GOBUILD = go build GOTEST = go test -v