Compare commits

..

1 Commits

Author SHA1 Message Date
Vorthas
8f86be8184
Merge e170ec0cc8 into 79eb752552 2024-10-15 18:14:54 -04:00

View File

@ -8,18 +8,15 @@ installEpsonPrinterDriver() {
case "$PACKAGER" in case "$PACKAGER" in
pacman) pacman)
"$AUR_HELPER" -S --noconfirm epson-inkjet-printer-escpr "${AUR_HELPER}" -S --noconfirm epson-inkjet-printer-escpr
;; ;;
apt-get | nala) apt-get | nala)
"$ESCALATION_TOOL" "$PACKAGER" install -y printer-driver-escpr "$ESCALATION_TOOL" "${PACKAGER}" install -y printer-driver-escpr
;; ;;
dnf) dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y epson-inkjet-printer-escpr "$ESCALATION_TOOL" "${PACKAGER}" install -y epson-inkjet-printer-escpr
;;
*)
printf "%b\n" "${RED}Unsupported package manager ${PACKAGER}${RC}"
exit 1
;; ;;
*) ;;
esac esac
} }