Apple M1: Fix "Building and running unit tests" message

For {arch} to be converted, the string needs to be an f-string.
This commit is contained in:
Pokechu22 2022-04-14 15:34:52 -07:00
parent 3fdc6cbffe
commit 9994363aa8

View file

@ -337,7 +337,7 @@ def build(config):
if not os.path.exists(arch):
os.mkdir(arch)
print("Building and running unit tests for: {arch}")
print(f"Building and running unit tests for: {arch}")
unit_test_results[arch] = \
subprocess.call(["cmake", "--build", ".",
"--config", config["build_type"],