chore: ci containers use curl instead of wget
Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2347>
This commit is contained in:
parent
18dc07a214
commit
d348fc180f
|
@ -9,7 +9,7 @@ tmpdir="$(mktemp -d)"
|
|||
trap 'rm -rf "$tmpdir"' EXIT
|
||||
|
||||
pushd "$tmpdir"
|
||||
wget "https://github.com/swagger-api/swagger-ui/archive/refs/tags/v$SWAGGER_VERSION.tar.gz" -O swagger-ui.tgz
|
||||
curl -sSL "https://github.com/swagger-api/swagger-ui/archive/refs/tags/v$SWAGGER_VERSION.tar.gz" -o swagger-ui.tgz
|
||||
tar -xzf swagger-ui.tgz
|
||||
popd
|
||||
mv "$tmpdir/"*/dist "$TARGET_PATH"
|
||||
|
|
Loading…
Reference in New Issue