From 95c35bcb3f9e2559e366f1e27f94ecb7928364a6 Mon Sep 17 00:00:00 2001 From: Taryn Hill Date: Sat, 26 Aug 2017 10:39:51 -0500 Subject: [PATCH] Do not error out of scripts that do not require 'make' if 'make' is not present --- launch-dedicated.sh | 1 - launch-game.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/launch-dedicated.sh b/launch-dedicated.sh index d0e92ac..407befc 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -5,7 +5,6 @@ # Read the file to see which settings you can override set -e -command -v make >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires make."; exit 1; } command -v python >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires python."; exit 1; } command -v mono >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires mono."; exit 1; } diff --git a/launch-game.sh b/launch-game.sh index a9f2d4a..2bc27ec 100755 --- a/launch-game.sh +++ b/launch-game.sh @@ -1,7 +1,6 @@ #!/bin/sh set -e -command -v make >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires make."; exit 1; } command -v python >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires python."; exit 1; } command -v mono >/dev/null 2>&1 || { echo >&2 "The OpenRA mod template requires mono."; exit 1; }