You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by me...@apache.org on 2020/10/10 12:49:27 UTC

[apisix] branch master updated: fix: wget -O always leave a file enven though download fail (#2376)

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

membphis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git


The following commit(s) were added to refs/heads/master by this push:
     new f05cba0  fix: wget -O always leave a file enven though download fail (#2376)
f05cba0 is described below

commit f05cba014524b89cf3e712a5410933741944ab3a
Author: RocFang <fa...@gmail.com>
AuthorDate: Sat Oct 10 20:49:14 2020 +0800

    fix: wget -O always leave a file enven though download fail (#2376)
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 665271e..cd80123 100644
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,7 @@ endif
 .PHONY: utils
 utils:
 ifeq ("$(wildcard utils/lj-releng)", "")
-	wget -O utils/lj-releng https://raw.githubusercontent.com/iresty/openresty-devel-utils/master/lj-releng
+	wget -P utils https://raw.githubusercontent.com/iresty/openresty-devel-utils/master/lj-releng
 	chmod a+x utils/lj-releng
 endif