We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfae44e commit 6331e5cCopy full SHA for 6331e5c
src/main/java/cf/maybelambda/fedora/Main.java
@@ -15,7 +15,7 @@ public class Main {
15
static List<String> CMD_DNF_INST_REPOS = asList("sudo", "dnf", "install", "-y");
16
static List<String> CMD_DNF_INST = asList("sudo", "dnf", "--refresh", "install", "-y");
17
static List<String> CMD_DNF_RM = asList("sudo", "dnf", "remove", "-y", "--noautoremove");
18
- static List<String> CMD_DNF_MARK = asList("sudo", "dnf", "mark", "user", "flatpak"); // single arg appended to cmd
+ static List<String> CMD_DNF_MARK = asList("sudo", "dnf", "mark", "-y", "user", "flatpak"); // single arg appended to cmd
19
static List<String> CMD_DNF_AUTORM = asList("sudo", "dnf", "autoremove", "-y");
20
static List<String> CMD_FLATPAK_REMOTE_ADD = asList("sudo", "flatpak", "remote-add", "--if-not-exists");
21
static List<String> CMD_FLATPAK_INST = asList("flatpak", "install", "-y");
0 commit comments