Skip to content

Commit b1c0770

Browse files
runonthespotclaude
andcommitted
fix: properly configure Strawberry Perl PATH for Windows
- Use PowerShell to install and configure Strawberry Perl - Add Strawberry Perl to GITHUB_PATH at the beginning - Verify Perl installation to ensure it's working - This should fix the missing Locale::Maketext::Simple module 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4cf1a9b commit b1c0770

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,12 @@ jobs:
105105
run: |
106106
# Install Strawberry Perl for OpenSSL compilation
107107
choco install strawberryperl -y
108-
# Refresh environment variables
109-
refreshenv
110-
shell: cmd
108+
# Add Strawberry Perl to PATH at the beginning
109+
echo "C:\strawberry\perl\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
110+
echo "C:\strawberry\c\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
111+
# Verify Perl installation
112+
C:\strawberry\perl\bin\perl.exe -v
113+
shell: pwsh
111114

112115
- name: Install cross
113116
if: matrix.use-cross

0 commit comments

Comments
 (0)