mirror of https://github.com/EspoTek/Labrador.git
bootstrap script fix
This commit is contained in:
parent
fa1d7b780c
commit
cccbdb2a78
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue