12 lines
354 B
Bash
Executable File
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"
|
|
|