conda-forge / conda-forge/powershell-feedstock

Updating SHAs

Open
#12 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Shell
Stars
0
Forks
5
Avg merge
6m
Merged PRs (30d)
2

Description

```bash
#!/usr/bin/env bash
set -euo pipefail

version="7.5.4"
urls=(
"https://raw.githubusercontent.com/PowerShell/PowerShell/refs/tags/v${version}/assets/additionalAttributions.txt"
"https://github.com/PowerShell/PowerShell/releases/download/v${version}/PowerShell-${version}-win-x64.zip"
"https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-linux-x64.tar.gz"
"https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-linux-arm64.tar.gz"
"https://github.com/PowerShell/PowerShell/releases/download/v${version}/powershell-${version}-osx-arm64.tar.gz"
)

for url in "${urls[@]}"; do
checksum="$(curl -fsSL "$url" | sha256sum | awk '{print $1}')"
printf '%s %s\n' "$checksum" "$url"
done
```

Contributor guide

Open the contributing guide

Research direction

Run the supplied Bash script for PowerShell version 7.5.4 and inspect the SHA-256 output for the five listed release URLs. Locate the feedstock metadata that records these checksums, update the values, and verify that all listed artifacts have matching hashes.

Written by the indexing model from the issue text.

Assessment

Tech stack
powershell, shell
Domain
build-system
Issue type
Refactor
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
45/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.