Fix typo in script: wget -o should be wget -O

This commit is contained in:
Joey Hafner 2024-07-21 14:50:08 -07:00
parent b9c9cfa287
commit ded912bd3f
No known key found for this signature in database

View File

@ -4,7 +4,7 @@
# user.settings.json => ~/.config/VSCodium/User/settings.json
# continue.config.json => ~/.continue/config.json
wget -o /tmp/codium.rpm $(curl -s https://api.github.com/repos/VSCodium/vscodium/releases/latest | grep "browser_download_url.*.x86_64.rpm" | cut -d : -f 2,3 | tr -d \" | head -n 1)
wget -O /tmp/codium.rpm $(curl -s https://api.github.com/repos/VSCodium/vscodium/releases/latest | grep "browser_download_url.*.x86_64.rpm" | cut -d : -f 2,3 | tr -d \" | head -n 1)
sudo dnf install /tmp/codium.rpm
rm /tmp/codium.rpm