Develop: Add mantic to install-jxl.sh and install-mariadb.sh scripts
Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
parent
b8fb87a9cf
commit
dcbe798772
2 changed files with 3 additions and 3 deletions
4
scripts/dist/install-jxl.sh
vendored
4
scripts/dist/install-jxl.sh
vendored
|
@ -50,7 +50,7 @@ case $DESTARCH in
|
|||
(cd "$TMPDIR" && dpkg -i jxl_0.8.1_amd64.deb libjxl_0.8.1_amd64.deb libjxl-dev_0.8.1_amd64.deb)
|
||||
apt --fix-broken install
|
||||
rm -rf /tmp/jpegxl
|
||||
elif [[ $VERSION_CODENAME == "lunar" ]]; then
|
||||
elif [[ $VERSION_CODENAME == "lunar" || $VERSION_CODENAME == "mantic" ]]; then
|
||||
echo "Installing JPEG XL distribution packages for amd64 (Intel 64-bit)"
|
||||
apt-get -qq install libjxl-dev libjxl-tools
|
||||
else
|
||||
|
@ -59,7 +59,7 @@ case $DESTARCH in
|
|||
;;
|
||||
|
||||
arm64 | ARM64 | aarch64)
|
||||
if [[ $VERSION_CODENAME == "lunar" ]]; then
|
||||
if [[ $VERSION_CODENAME == "lunar" || $VERSION_CODENAME == "mantic" ]]; then
|
||||
echo "Installing JPEG XL distribution packages for arm64 (ARM 64-bit)"
|
||||
apt-get -qq install libjxl-dev libjxl-tools
|
||||
else
|
||||
|
|
2
scripts/dist/install-mariadb.sh
vendored
2
scripts/dist/install-mariadb.sh
vendored
|
@ -21,7 +21,7 @@ set -e
|
|||
|
||||
. /etc/os-release
|
||||
|
||||
if [[ $VERSION_CODENAME == "lunar" ]]; then
|
||||
if [[ $VERSION_CODENAME == "lunar" || $VERSION_CODENAME == "mantic" ]]; then
|
||||
echo "Installing MariaDB distribution packages..."
|
||||
else
|
||||
MARIADB_VERSION="10.11"
|
||||
|
|
Loading…
Reference in a new issue