Fix another syntax error...

This commit is contained in:
FriwiDev 2021-12-16 19:27:11 +01:00
parent 7047f137ed
commit eee403d4dc

View File

@ -23,7 +23,7 @@ for x in f:
inpatch = False inpatch = False
if inpatch == False: if inpatch == False:
#Patch minimum cmake version to not break our builds on linux #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" result += "cmake_minimum_required(VERSION 3.18)\n"
else: else:
result += x result += x