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 2022/02/14 05:00:25 UTC

[dubbo-go-pixiu] branch develop updated: rm all output file when make clean

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 77413f8  rm all output file when make clean
     new 3f4672f  Merge pull request #362 from ztelur/bugfix-makefile
77413f8 is described below

commit 77413f826361ba9cbc48dea8f01beb1eea5e2ab0
Author: Randy <zt...@gmail.com>
AuthorDate: Fri Feb 11 10:18:07 2022 +0800

    rm all output file when make clean
---
 igt/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/igt/Makefile b/igt/Makefile
index 2a8dfa3..72e9465 100644
--- a/igt/Makefile
+++ b/igt/Makefile
@@ -119,7 +119,7 @@ docker-down:
 .PHONY: clean
 clean: stop
 	$(info   >  Cleanning up $(OUT_DIR))
-# 	@-rm -rf $(OUT_DIR)
+	@-rm -rf $(OUT_DIR)
 	@-cat $(PID) | awk '{print $1}' | xargs kill -9
 	@-cat $(PIXIU_PID) | awk '{print $1}' | xargs kill -9