Skip to content

Commit 6331e5c

Browse files
committed
Add y flag to dnf mark cmd
1 parent cfae44e commit 6331e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/cf/maybelambda/fedora/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class Main {
1515
static List<String> CMD_DNF_INST_REPOS = asList("sudo", "dnf", "install", "-y");
1616
static List<String> CMD_DNF_INST = asList("sudo", "dnf", "--refresh", "install", "-y");
1717
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
18+
static List<String> CMD_DNF_MARK = asList("sudo", "dnf", "mark", "-y", "user", "flatpak"); // single arg appended to cmd
1919
static List<String> CMD_DNF_AUTORM = asList("sudo", "dnf", "autoremove", "-y");
2020
static List<String> CMD_FLATPAK_REMOTE_ADD = asList("sudo", "flatpak", "remote-add", "--if-not-exists");
2121
static List<String> CMD_FLATPAK_INST = asList("flatpak", "install", "-y");

0 commit comments

Comments
 (0)