Files
toolbox-dev-env/install-codium.bash
2025-01-26 13:38:19 -05:00

12 lines
354 B
Bash
Executable File

#!/usr/bin/env bash
set -e
latest_codium=$(curl -sSL https://api.github.com/repos/VSCodium/vscodium/releases/latest | jq -r '.tag_name')
mkdir -p /tmp/rpms
echo "Downloading vscodium-${latest_codium}..."
curl -sSLo /tmp/rpms/codium.rpm "https://github.com/VSCodium/vscodium/releases/download/${latest_codium}/codium-${latest_codium}-el9.x86_64.rpm"