Skip to content

Commit

Permalink
wget replaced to curl
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Jan 8, 2022
1 parent 0475658 commit 7ae0075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefiles/defines.Makefile
Expand Up @@ -149,6 +149,6 @@ endef

# Download phar file (if needs) and save it in ./vendor/bin
define download_phar
@wget $(1) --output-document="$(PATH_ROOT)/vendor/bin/$(2).phar" -L --no-clobber --no-check-certificate --quiet || true
@chmod +x "$(PATH_ROOT)/vendor/bin/$(2).phar" || true
@curl $(1) --output "$(PATH_ROOT)/vendor/bin/$(2).phar" -L
@chmod +x "$(PATH_ROOT)/vendor/bin/$(2).phar"
endef

0 comments on commit 7ae0075

Please sign in to comment.