From b2eefc4568d833463edc14c8584ae96cf47f3b13 Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Sun, 3 Apr 2022 12:31:46 +0100 Subject: [PATCH] add user-manual distro --- scripts/get_pkg_filename.sh.in | 3 +++ scripts/get_pkg_filename_from_distro.sh.in | 3 +++ 2 files changed, 6 insertions(+) diff --git a/scripts/get_pkg_filename.sh.in b/scripts/get_pkg_filename.sh.in index 54a38da..99ee7db 100755 --- a/scripts/get_pkg_filename.sh.in +++ b/scripts/get_pkg_filename.sh.in @@ -50,4 +50,7 @@ case "$pkg_type" in "WINDOWS_MSYS") echo "zrythm${trial}-$zrythm_pkg_ver-ms-setup.exe" ;; + "USER_MANUAL") + echo "zrythm${trial}-$zrythm_pkg_ver-manual.zip" + ;; esac diff --git a/scripts/get_pkg_filename_from_distro.sh.in b/scripts/get_pkg_filename_from_distro.sh.in index 1aea469..11ba830 100755 --- a/scripts/get_pkg_filename_from_distro.sh.in +++ b/scripts/get_pkg_filename_from_distro.sh.in @@ -59,6 +59,9 @@ distro_to_pkg_type () { "flatpak") echo "FLATPAK" ;; + "manual" | "user-manual") + echo "USER_MANUAL" + ;; esac } pkg_type=$(distro_to_pkg_type $distro)