From cc1893d6b52276afb706bcefc976db978d0a1c2d Mon Sep 17 00:00:00 2001 From: James Patrick Date: Thu, 16 May 2019 20:13:40 -0400 Subject: [PATCH] Added SSH awareness. This should be used with ``` ifndef IS_SSH ``` I will try and move IS_MAC and IS_LINUX to work with this as well. Issue I'm having is or statements. --- lib/shared.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/shared.mk b/lib/shared.mk index effff21..1dcdb98 100644 --- a/lib/shared.mk +++ b/lib/shared.mk @@ -27,6 +27,8 @@ endif IS_MAC?=false IS_LINUX?=false +IS_SSH=${SSH_TTY} + # TURN THIS OFF FOR DEBUGGING MAKEFLAGS += --silent