From eee403d4dc94b535c87f63addd3bdb168aff34e2 Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Thu, 16 Dec 2021 19:27:11 +0100 Subject: [PATCH] Fix another syntax error... --- scripts/patch_cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch_cmake.py b/scripts/patch_cmake.py index f3aa2d3..522d4b5 100644 --- a/scripts/patch_cmake.py +++ b/scripts/patch_cmake.py @@ -23,7 +23,7 @@ for x in f: inpatch = False if inpatch == False: #Patch minimum cmake version to not break our builds on linux - if x.startsWith("cmake_minimum_required"): + if x.startswith("cmake_minimum_required"): result += "cmake_minimum_required(VERSION 3.18)\n" else: result += x