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
|
set -e
|
||||||
|
|
||||||
# Install prerequisites
|
# Install prerequisites
|
||||||
QT5_NOT_INSTALLED = dpkg -s qt5-default
|
QT5_NOT_INSTALLED=$(dpkg -s qt5-default)
|
||||||
LIBUSB_NOT_INSTALLED = dpkg -s libusb-1.0-0-dev
|
LIBUSB_NOT_INSTALLED=$(dpkg -s libusb-1.0-0-dev)
|
||||||
|
|
||||||
if [ $QT5_NOT_INSTALLED ] || [ $LIBUSB_NOT_INSTALLED ]; then
|
if [ $QT5_NOT_INSTALLED ] || [ $LIBUSB_NOT_INSTALLED ]; then
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|
Loading…
Reference in New Issue