From 9c95b2c7d3243a921a83c96c580f77e493b63fc7 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 8 Jun 2025 11:40:18 +0200 Subject: [PATCH] qrencode/alpine --- spcd/bootstrap.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/spcd/bootstrap.sh b/spcd/bootstrap.sh index 3ce4993..08c5aa1 100644 --- a/spcd/bootstrap.sh +++ b/spcd/bootstrap.sh @@ -828,7 +828,12 @@ spcd_f_pkg() { spcd_f_pm_pkg_install "plantuml" # qrencode spcd_step "QRencode" - spcd_f_pm_pkg_install "qrencode" + case "${SPCD_OS_ID}" in + "${SPCD_OS_ALPINE}") + spcd_f_pm_pkg_install "libqrencode-tools" + ;; + *) spcd_f_pm_pkg_install "qrencode" ;; + esac # rsync spcd_step "Rsync" spcd_f_pm_pkg_install "rsync"