From 09c659448b13af0fbb2d039ca1a39ff673414c5a Mon Sep 17 00:00:00 2001
From: Vasileios Pasialiokis <whiterocket@outlook.com>
Date: Sat, 25 May 2019 20:06:47 +0300
Subject: [PATCH] bug in exit status

---
 makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile
index 1e1dc781a81..9f9dbd72adf 100644
--- a/makefile
+++ b/makefile
@@ -3,7 +3,7 @@ HASH := $(shell git rev-list -n 1 --abbrev-commit HEAD)
 COMMIT := $(git rev-parse --short HEAD)
 uname := $(shell uname -s)
 arch := $(shell uname -m)
-TWEEGO := $(shell command -v tweego || echo "$?")
+TWEEGO := $(shell command -v tweego ; echo "$?")
 ifneq ($(TWEEGO),0)
 	ifeq ($(uname),Linux)
 		ifeq ($(arch),x86_64)
-- 
GitLab