Skip to content

Commit

Permalink
Merge pull request #294 from Gunni/say_no_to_insecure
Browse files Browse the repository at this point in the history
Remove --insecure from curl call
  • Loading branch information
oetiker authored Sep 7, 2021
2 parents e4a69a2 + bca12af commit dea1c9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- remove --insecure from curl (wget does not have it!) in configure.ac @Gunni

2021-08-13 08:12:06 +0200 Tobias Oetiker <[email protected]>

- release 2.8.2
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ AC_PATH_PROG(WGET, wget, no)
URL_CAT="neither curl nor wget found"

if test -x "$CURL"; then
URL_CAT="$CURL --location --insecure"
URL_CAT="$CURL --location"
else
if test -x "$WGET"; then
URL_CAT="$WGET -O -"
Expand Down

0 comments on commit dea1c9f

Please sign in to comment.