mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3004 from 4censord/buildscript-allow-docker-on-non-debian
build.sh: Allow docker build on non debian systems
This commit is contained in:
commit
16346f3f05
1 changed files with 1 additions and 1 deletions
2
build.sh
2
build.sh
|
@ -39,7 +39,7 @@ do_build_native() {
|
|||
}
|
||||
|
||||
do_build_docker() {
|
||||
if ! dpkg --print-architecture | grep -q 'amd64'; then
|
||||
if ! [ $(uname -m) = "x86_64" ]; then
|
||||
echo "Docker-based builds only support amd64-based cross-building; use a 'native' build instead."
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue