mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
[PR #10673] Add --output-dir argument to build.sh
#12575
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/jellyfin/jellyfin/pull/10673
State: closed
Merged: No
Currently the build script running in native mode will write the output to "../bin" with respect to the CWD, which is where jellyfin is cloned to. I keep all of my code repos in the same folder, so I don't want jellyfin to write to the folder above it. At the same time I don't want to break existing default behavior. Thus, I've added the option
--output-dir, which lets the user specify the prefix where "bin//..." outputs are written to.I've added the appropriate help docs. Other than that, the change is straightforward.
Changes
Add
-o / --output-dirargument tobuild.sh