From 7047f137ed6ad3271c245728b26034b7cec59a5a Mon Sep 17 00:00:00 2001 From: FriwiDev Date: Thu, 16 Dec 2021 19:23:44 +0100 Subject: [PATCH] Fix 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 b5de70d..f3aa2d3 100644 --- a/scripts/patch_cmake.py +++ b/scripts/patch_cmake.py @@ -25,7 +25,7 @@ for x in f: #Patch minimum cmake version to not break our builds on linux if x.startsWith("cmake_minimum_required"): result += "cmake_minimum_required(VERSION 3.18)\n" - else + else: result += x f.close()