From 696cb9f9fcac74d129d09592af85b7a2a5becd77 Mon Sep 17 00:00:00 2001 From: maride Date: Sun, 30 Jul 2017 23:55:14 +0200 Subject: [PATCH] Prefer the simple solutions. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 72e5026..2a7d701 100755 --- a/install.sh +++ b/install.sh @@ -26,7 +26,7 @@ read blockdevice for check in checks/*.check do echo "=> Running check '$check'..." - $($check) + $check return=$? if [ "$return" -ne 0 ]; then echo "=> Check failed. Fix it, maybe." @@ -37,7 +37,7 @@ done for step in steps/*.step do echo "=> Running step '$step'..." - $($step) + $step return=$? if [ "$return" -ne 0 ]; then echo "=> Step failed. That is weird. Sorry. Check logs maybe."