Update .gitignore to exclude build/packages directory and fix package build script output paths

This commit is contained in:
2026-07-14 11:58:02 -04:00
parent 91f3748d86
commit 25828ff4a7
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -48,3 +48,4 @@ schema/
**/scenario.json
scenario.json
logs
build/packages/
+2 -2
View File
@@ -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"