Do not error out of scripts that do not require 'make' if 'make' is not present

This commit is contained in:
Taryn Hill 2017-08-26 10:39:51 -05:00 committed by Paul Chote
parent bf555898b9
commit 95c35bcb3f
2 changed files with 0 additions and 2 deletions

View File

@ -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; }

View File

@ -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; }