From 50ec81710bc6dec283c5f68a09881c6251df7587 Mon Sep 17 00:00:00 2001 From: bryan Date: Tue, 14 Feb 2023 15:01:47 -0500 Subject: [PATCH] Test out force install --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index b859c42..f51c151 100755 --- a/installJRMC +++ b/installJRMC @@ -335,7 +335,7 @@ init() { pkg_query(){ rpm -q "$@"; } ;; debian|ubuntu) - pkg_install(){ sudo apt-get install -y -q0 "$@"; } + pkg_install(){ sudo apt-get -f install -y -q0 "$@"; } pkg_install_local() { installMCDEB; } pkg_remove(){ sudo apt-get remove --auto-remove -y -q0 "$@"; } pkg_update(){ sudo apt-get update -y -q0; }