From 94af2d5725f3a5a328399da1d62e7b0a6c8f8070 Mon Sep 17 00:00:00 2001 From: enahum Date: Thu, 8 Feb 2018 10:49:34 -0300 Subject: [PATCH] Fix Makefile (#1424) --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index b62302016..8021278d8 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ OVERRIDE_ASSETS = $(shell find assets/override -type d 2> /dev/null) $(shell fin .yarninstall: package.json @if ! [ $(shell which yarn 2> /dev/null) ]; then \ - @echo "yarn is not installed https://yarnpkg.com"; \ + echo "yarn is not installed https://yarnpkg.com"; \ exit 1; \ fi @@ -112,20 +112,20 @@ check-device-ios: check-device-android: @if ! [ $(ANDROID_HOME) ]; then \ - @echo "ANDROID_HOME is not set"; \ - @exit 1; \ + echo "ANDROID_HOME is not set"; \ + exit 1; \ fi @if ! [ $(shell which adb 2> /dev/null) ]; then \ - @echo "adb is not installed"; \ - @exit 1; \ + echo "adb is not installed"; \ + exit 1; \ fi @echo "Connect your Android device or open the emulator" @adb wait-for-device @if ! [ $(shell which watchman 2> /dev/null) ]; then \ - @echo "watchman is not installed"; \ - @exit 1; \ + echo "watchman is not installed"; \ + exit 1; \ fi prepare-android-build: