You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2021/03/10 05:05:12 UTC

[iotdb-client-go] branch feature/gitsubmodule updated: fix makefile error (iotdb zipfile not found) in go

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

hxd pushed a commit to branch feature/gitsubmodule
in repository https://gitbox.apache.org/repos/asf/iotdb-client-go.git


The following commit(s) were added to refs/heads/feature/gitsubmodule by this push:
     new 0461784  fix makefile error (iotdb zipfile not found) in go
0461784 is described below

commit 0461784e950adf664f9bf2527421ce7e28f0a7d4
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Wed Mar 10 13:03:01 2021 +0800

    fix makefile error (iotdb zipfile not found) in go
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 88e7708..8b985c9 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@ e2e_test_clean:
 #only used for project structure that the iotdb main project is in the parent folder of this project.
 e2e_test_for_parent_git_repo:
 	mkdir -p docker-context/iotdb
-	unzip -o -q server/target/iotdb-server-*.zip -d docker-context/iotdb
+	unzip -o -q ../server/target/iotdb-server-*.zip -d docker-context/iotdb
 	docker-compose -f test/e2e/docker-compose.yml up --build --abort-on-container-exit --remove-orphans
 
 e2e_test_clean_for_parent_git_repo: