We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634af3b commit 073edf0Copy full SHA for 073edf0
1 file changed
generic/install-jetbrains-tools
@@ -9,5 +9,12 @@ base_filename="jetbrains-toolbox-$JETBRAINS_TOOLBOX_VERSION"
9
10
curl -L -o /tmp/$base_filename.tar.gz https://download.jetbrains.com/toolbox/$base_filename.tar.gz
11
tar xzvf /tmp/$base_filename.tar.gz -C /tmp
12
+
13
+if [ -f "/tmp/$base_filename/bin/jetbrains-toolbox" ]; then
14
+ echo "JetBrains Toolbox downloaded and extracted successfully."
15
+else
16
+ echo "Failed to download or extract JetBrains Toolbox."
17
+ exit 1
18
+fi
19
"/tmp/$base_filename/bin/jetbrains-toolbox" >/dev/null 2>&1 &
20
echo "JetBrains Toolbox installation initiated. Please complete the setup through the application interface."
0 commit comments