We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bd2977 commit 5df5e30Copy full SHA for 5df5e30
linux-install-atlauncher.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-# Script for installing ATLauncher on Linux, Version 1.0
+# Script for installing ATLauncher on Linux, Version 1.1
4
# Copyright (C) 2020-2021 DavidoTek
5
6
# === README ===
@@ -17,6 +17,9 @@ install_dependencies() {
17
if which zypper > /dev/null; then
18
echo Detected zypper Trying to install dependencies...
19
pkexec zypper install -y java-1_8_0-openjdk unzip zenity
20
+ elif which eopkg > /dev/null; then
21
+ echo Detected eopkg. Trying to install dependencies...
22
+ pkexec eopkg install -y openjdk-8 unzip zenity
23
elif which apt > /dev/null; then
24
echo Detected apt. Trying to install dependencies...
25
pkexec apt -y install openjdk-8-jre wget unzip zenity
0 commit comments