Last active
November 19, 2024 03:33
-
-
Save abn/d6a769f5cacd162256c2e67f6c3459b0 to your computer and use it in GitHub Desktop.
Install JetBrains Toolbox on Fedora
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 | |
set -o pipefail | |
sudo dnf install -y jq fuse fuse-libs | |
curl -sL \ | |
$(curl -s 'https://data.services.jetbrains.com/products/releases?code=TBA&latest=true&type=release' \ | |
| jq -r '.TBA[0].downloads.linux.link') \ | |
| tar xzvf - \ | |
--directory="${HOME}/.local/bin" \ | |
--wildcards */jetbrains-toolbox \ | |
--strip-components=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment