deb-get
deb-get copied to clipboard
Fix incorrect supported architectures for RustDesk
NOTES:
- On Debian based distributions,
dpkg --print-architecturewill never:- output
aarch64, but instead will usearm64. - output
armv7, but instead will usearmhf -
- output
PR NOTES:
- For the past year,
armv7releases fordebpackages have only ever includedarmv7-sciter.deb. As it stood, the script would never be able to get and install thedebfor the armv7 architecture. - As mentioned in the above notes,
dpkgwill never outputaarch64orarmv7. As a result, the program would never have been able to installarmbased systems.
FINAL NOTES:
- I have not been able to test the changes directly, so please review them closely to ensure the
greppatterns is properly implemented. - This PR fixes issue 1415
I have no idea why the test is failing. Maybe because it's trying to save the deb to the deb-get cache?
https://github.com/wimpysworld/deb-get/pull/1416 might be prefered over this one, since it passes the checks.