You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/07/26 02:17:46 UTC

[dubbo-go-pixiu] branch develop updated: merge

This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go-pixiu.git


The following commit(s) were added to refs/heads/develop by this push:
     new f40933d  merge
     new 19f00a6  Merge pull request #222 from MasterKenway/fix-quickstart
f40933d is described below

commit f40933dfa8ca10f0714e97c9de5278b1da978861
Author: MasterKenway <zk...@ikenway.net>
AuthorDate: Sun Jul 25 21:55:23 2021 +0800

    merge
---
 Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index 9cc33e3..a7e1bec 100644
--- a/Makefile
+++ b/Makefile
@@ -44,11 +44,11 @@ ifeq (windows,$(os))
 	targetName = dubbo-go-pixiu.exe
 endif
 exe := $(mainPath)$(targetName)
-build:
-	cd $(mainPath) && go build  -o $(targetName)
+gobuild:
+	cd $(mainPath) && go build  -o $(currentPath)/$(targetName) *.go
 
 run: build
-	cp $(exe) $(currentPath) && ./dubbo-go-pixiu start -a $(api-config-path) -c $(config-path)
+	./dubbo-go-pixiu start -a $(api-config-path) -c $(config-path)
 
 license-check-util:
 	go install github.com/lsm-dev/license-header-checker/cmd/license-header-checker@latest