From bbb21311f5bf8395cc1d11d4c630d3ced78ece37 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Sat, 1 Sep 2018 17:31:48 +0200 Subject: [PATCH] Fix the indentation in the make file --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index bdd2e20..56b5e6c 100644 --- a/Makefile +++ b/Makefile @@ -59,16 +59,16 @@ scripts: variables: @if [ -z "$(MOD_ID)" ] || [ -z "$(ENGINE_DIRECTORY)" ]; then \ - echo "Required mod.config variables are missing:"; \ - if [ -z "$(MOD_ID)" ]; then \ - echo " MOD_ID"; \ - fi; \ - if [ -z "$(ENGINE_DIRECTORY)" ]; then \ - echo " ENGINE_DIRECTORY"; \ - fi; \ - echo "Repair your mod.config (or user.config) and try again."; \ - exit 1; \ - fi + echo "Required mod.config variables are missing:"; \ + if [ -z "$(MOD_ID)" ]; then \ + echo " MOD_ID"; \ + fi; \ + if [ -z "$(ENGINE_DIRECTORY)" ]; then \ + echo " ENGINE_DIRECTORY"; \ + fi; \ + echo "Repair your mod.config (or user.config) and try again."; \ + exit 1; \ + fi engine: variables scripts @./fetch-engine.sh || (printf "Unable to continue without engine files\n"; exit 1)