Update Powershell source location
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Danny Bessems 2022-04-18 12:10:14 +02:00
parent 50c7536bf4
commit 3ab936b510
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ RUN apk --update add --no-cache \
curl \
jq && \
curl -L https://api.github.com/repos/PowerShell/PowerShell/releases/latest | \
jq -r '.assets[] | select(.name | contains("debian.10_amd64")) | .browser_download_url' | \
jq -r '.assets[] | select(.name | startswith("powershell-lts") and contains("deb_amd64")) | .browser_download_url' | \
xargs -I {} curl -L -o /tmp/packages-microsoft-prod.deb {}
FROM ruby:slim