From ea897ab8dc1e85bdd0224ac57239a5b8ee2a1b02 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 30 Aug 2021 09:59:36 +0300 Subject: [PATCH] Extract a method or a function. This is Refactoring / code cleanup. See: * https://refactoring.com/catalog/extractMethod.html * https://en.wikipedia.org/wiki/Code_refactoring * https://www.refactoring.com/ * https://www.joelonsoftware.com/2002/01/23/rub-a-dub-dub/ Some small optimisations may have slipped in as well. --- scripts/linux-install.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/linux-install.py b/scripts/linux-install.py index fd0a193b..99558916 100755 --- a/scripts/linux-install.py +++ b/scripts/linux-install.py @@ -16,10 +16,13 @@ import subprocess def main(): + def _make_test(make_exe): + subprocess.check_call([make_exe, "test", "rules"]) + try: - subprocess.check_call(["gmake", "test", "rules"]) + _make_test("gmake") except subprocess.CalledProcessError: - subprocess.check_call(["make", "test", "rules"]) + _make_test("make") if not os.path.exists("./images"): os.symlink("./data/images/", "./images")