From d880f72e4633a496a14a7e9288855dd9a98a3f26 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Fri, 7 Apr 2017 20:14:57 +0200 Subject: [PATCH] Fix bug in installer when checking lxd presence Change-Id: I4e0dcdd59a8be0499225fc242acb568ab36eff0c Signed-off-by: garciadeblas --- installers/install_from_source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/install_from_source.sh b/installers/install_from_source.sh index cf706a97..5f483cd3 100755 --- a/installers/install_from_source.sh +++ b/installers/install_from_source.sh @@ -284,7 +284,7 @@ if [ -z "$ASSUME_YES" ]; then fi echo -e "Checking required packages: lxd" -lxd --version &>/dev/null || echo -e "lxd not present, exiting " >&2 && exit 1 +lxd --version &>/dev/null || FATAL "lxd not present, exiting." wget -q -O- https://osm-download.etsi.org/ftp/osm-1.0-one/README.txt &> /dev/null -- 2.25.1