1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Remove arch checking for native builds

This commit is contained in:
Joshua M. Boniface 2020-03-24 11:11:08 -04:00
parent 39685be74c
commit 873cc0df95

View file

@ -34,10 +34,6 @@ list_platforms() {
}
do_build_native() {
if [[ $( dpkg --print-architecture | head -1 ) != "${PLATFORM##*.}" ]]; then
echo "Cross-building is not supported for native builds, use 'docker' builds on amd64 for cross-building."
exit 1
fi
export IS_DOCKER=NO
deployment/build.${PLATFORM}
}