aboutsummaryrefslogtreecommitdiff
path: root/deployment/build.debian.amd64
diff options
context:
space:
mode:
Diffstat (limited to 'deployment/build.debian.amd64')
-rwxr-xr-xdeployment/build.debian.amd6410
1 files changed, 2 insertions, 8 deletions
diff --git a/deployment/build.debian.amd64 b/deployment/build.debian.amd64
index 1a59d02e9..350b22a85 100755
--- a/deployment/build.debian.amd64
+++ b/deployment/build.debian.amd64
@@ -1,6 +1,6 @@
#!/bin/bash
-#= Debian 10+ amd64 .deb
+#= Debian 12+ amd64 .deb
set -o errexit
set -o xtrace
@@ -8,12 +8,6 @@ set -o xtrace
# Move to source directory
pushd "${SOURCE_DIR}"
-if [[ ${IS_DOCKER} == YES ]]; then
- # Remove build-dep for dotnet-sdk-8.0, since it's installed manually
- cp -a debian/control /tmp/control.orig
- sed -i '/dotnet-sdk-8.0,/d' debian/control
-fi
-
# Modify changelog to unstable configuration if IS_UNSTABLE
if [[ ${IS_UNSTABLE} == 'yes' ]]; then
pushd debian
@@ -37,7 +31,7 @@ mv ../jellyfin*.{deb,dsc,tar.gz,buildinfo,changes} "${ARTIFACT_DIR}/"
if [[ ${IS_DOCKER} == YES ]]; then
cp -a /tmp/control.orig debian/control
- chown -Rc $(stat -c %u:%g "${ARTIFACT_DIR}") "${ARTIFACT_DIR}"
+ chown -Rc "$(stat -c %u:%g "${ARTIFACT_DIR}")" "${ARTIFACT_DIR}"
fi
popd