Skip to content

Commit

Permalink
simplify .deb install
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kirchgessner committed Mar 19, 2023
1 parent b887d23 commit 9013594
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions installers/liquidsoap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ install_liquidsoap() {
local PACKAGE=$(ls -tr liquidsoap*.deb |tail)
printf "\n\n************ downloaded $PACKAGE **************\n"

sudo dpkg --force-depends -i ./$PACKAGE
# add -o Debug::pkgProblemResolver=true if something goes wrong below. APT can decide to *remove* liquidsoap if a dependency is not available.
sudo apt -y install -f
sudo apt-get install -y --install-recommends ./$PACKAGE

printf "Installed "
liquidsoap --version
Expand Down
4 changes: 1 addition & 3 deletions installers/showergel_quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ install_liquidsoap() {
local PACKAGE=$(ls -tr liquidsoap*.deb |tail)
printf "\n\n************ downloaded $PACKAGE **************\n"

sudo dpkg --force-depends -i ./$PACKAGE
# add -o Debug::pkgProblemResolver=true if something goes wrong below. APT can decide to *remove* liquidsoap if a dependency is not available.
sudo apt -y install -f
sudo apt-get install -y --install-recommends ./$PACKAGE

printf "Installed "
liquidsoap --version
Expand Down

0 comments on commit 9013594

Please sign in to comment.