From 25828ff4a78c66699605526c81c318b8e96fe0ab Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Tue, 14 Jul 2026 11:58:02 -0400 Subject: [PATCH] Update .gitignore to exclude build/packages directory and fix package build script output paths --- .gitignore | 1 + build-linux-packages.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 75472195..5023bcfc 100644 --- a/.gitignore +++ b/.gitignore @@ -48,3 +48,4 @@ schema/ **/scenario.json scenario.json logs +build/packages/ \ No newline at end of file diff --git a/build-linux-packages.sh b/build-linux-packages.sh index cc593db4..604455e6 100755 --- a/build-linux-packages.sh +++ b/build-linux-packages.sh @@ -216,7 +216,7 @@ if [ "$BUILD_DEB" = true ]; then --after-remove "${PROJECT_ROOT}/scripts/debian/postrm.sh" \ -C "$PUBLISH_DIR" \ -p "$DEB_OUTPUT" \ - opt/=opt/jellyfin > "$DEB_LOG" 2>&1; then + .=opt/jellyfin > "$DEB_LOG" 2>&1; then print_success "Created: jellyfin-${VERSION}-amd64.deb" DEB_SIZE=$(du -h "$DEB_OUTPUT" | cut -f1) print_info "Size: $DEB_SIZE" @@ -255,7 +255,7 @@ if [ "$BUILD_RPM" = true ]; then --after-remove "${PROJECT_ROOT}/scripts/redhat/postun.sh" \ -C "$PUBLISH_DIR" \ -p "$RPM_OUTPUT" \ - opt/=opt/jellyfin > "$RPM_LOG" 2>&1; then + .=opt/jellyfin > "$RPM_LOG" 2>&1; then print_success "Created: jellyfin-${VERSION}-1.x86_64.rpm" RPM_SIZE=$(du -h "$RPM_OUTPUT" | cut -f1) print_info "Size: $RPM_SIZE"