Add --force-architecture to dpkg installation command

Mitigates an ARM installation issue:

```dpkg: error processing archive /tmp/plexmediaserver.deb (--install):
 package architecture (arm64) does not match system (armhf)
```
This commit is contained in:
Mark R 2020-12-16 20:34:51 +00:00 committed by Graham Booker
parent 565a4de14a
commit a99fc1c5f1

View File

@ -71,6 +71,6 @@ function installFromRawUrl {
exit 1
fi
dpkg -i --force-confold /tmp/plexmediaserver.deb
dpkg -i --force-confold --force-architecture /tmp/plexmediaserver.deb
rm -f /tmp/plexmediaserver.deb
}