Skip to content

Commit 3b8132e

Browse files
author
Kazys Stepanas
committed
Fix use of wrong quotes
1 parent 3848b2a commit 3b8132e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

colcon_cmake/task/cmake/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def _get_make_jobs_arguments(self, args, env):
301301
:rtype: list of strings
302302
"""
303303
generator = get_generator(args.build_base)
304-
if "Makefiles" in generator and args.cmake_jobs is None:
304+
if 'Makefiles' in generator and args.cmake_jobs is None:
305305
# check MAKEFLAGS for -j/--jobs/-l/--load-average arguments
306306
# Note: Ninja does not support environment variables.
307307
makeflags = env.get('MAKEFLAGS', '')

0 commit comments

Comments
 (0)