Created
October 9, 2025 16:20
-
-
Save grizmio/52e7d7ccc9f95c8d270c82cffb260a4f to your computer and use it in GitHub Desktop.
Comandos para actualizar el ebuild de windsurf en gentoo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
cd /var/db/repos/bentoo/app-editors/windsurf | |
VERSION=$(wget -q https://windsurf-stable.codeium.com/api/update/linux-x64/stable/latest -O- | jq -r '.windsurfVersion') | |
sudo bash -c "ls -rth1 windsurf* | xargs -I {} cat {} > windsurf-${VERSION}.ebuild" | |
sudo bash -c "sudo ebuild windsurf-${VERSION}.ebuild manifest" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment