pull/11149/head
Dax Raad 2026-01-29 10:59:46 -05:00
parent dfbf5d38f9
commit a5fbb5dbec
1 changed files with 7 additions and 0 deletions

View File

@ -256,6 +256,13 @@ jobs:
echo "=== Check permissions ==="
find packages/opencode/dist -type f -name "opencode" 2>/dev/null | xargs ls -la 2>/dev/null || echo "No executables found"
- name: Make binaries executable
run: |
echo "Adding execute permissions to all binaries..."
find packages/opencode/dist -type f \( -name "opencode" -o -name "opencode.exe" \) -exec chmod +x {} \;
echo "Permissions after fix:"
find packages/opencode/dist -type f -name "opencode" | head -3 | xargs ls -la
- name: Setup SSH for AUR
run: |
sudo apt-get update