From be961bae0f14e4dceb73f433c64e05ea97cedab4 Mon Sep 17 00:00:00 2001 From: Mario Werner Date: Mon, 1 Feb 2016 10:41:45 +0100 Subject: [PATCH] fixed typo in python script --- support/appveyor-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/appveyor-build.py b/support/appveyor-build.py index 6ffdbd4d..a5b684ef 100755 --- a/support/appveyor-build.py +++ b/support/appveyor-build.py @@ -24,7 +24,7 @@ else: if platform == 'x64': generator += ' Win64' cmake_command.append('-G' + generator) - build_command = ['cmake', '--build', '.', '--config', config, '--', '/m:4'], + build_command = ['cmake', '--build', '.', '--config', config, '--', '/m:4'] test_command = ['ctest', '-C', config] check_call(cmake_command)