wget → curl
continuous-integration/drone/push Build is failing Details

This commit is contained in:
3wc 2023-07-14 12:41:03 +01:00
parent ad01cf1bc4
commit 73f4ff132d
1 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@ steps:
- name: download hometown code
image: debian:buster
commands:
- wget https://github.com/hometown-fork/hometown/archive/refs/tags/v3.5.10+hometown-1.0.8.tar.gz
- "tar -zxvf *hometown*.tar.gz"
- "rm *hometown*.tar.gz"
- curl -o hometown.tar.gz https://github.com/hometown-fork/hometown/archive/refs/tags/v3.5.10+hometown-1.0.8.tar.gz
- "tar -zxvf hometown.tar.gz"
- "rm hometown.tar.gz"
- "mv hometown-* hometown"
- name: build and publish
image: plugins/docker