bootstrap script fix

This commit is contained in:
Chris Esposito 2019-08-18 16:23:57 +10:00
parent fa1d7b780c
commit cccbdb2a78
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
set -e
# Install prerequisites
QT5_NOT_INSTALLED = dpkg -s qt5-default
LIBUSB_NOT_INSTALLED = dpkg -s libusb-1.0-0-dev
QT5_NOT_INSTALLED=$(dpkg -s qt5-default)
LIBUSB_NOT_INSTALLED=$(dpkg -s libusb-1.0-0-dev)
if [ $QT5_NOT_INSTALLED ] || [ $LIBUSB_NOT_INSTALLED ]; then
sudo apt-get update