Skip to content

Commit ca5e4eb

Browse files
committed
Remove Profile Handling
1 parent 39620fb commit ca5e4eb

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

cppython/plugins/conan/plugin.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,6 @@ def _run_conan_install(self, conanfile_path: Path, update: bool, logger) -> None
128128
# Add build missing flag
129129
command_args.extend(['--build', 'missing'])
130130

131-
# Add profiles if specified
132-
command_args.extend(['--profile:host', 'default'])
133-
command_args.extend(['--profile:build', 'default'])
134-
135131
# Add update flag if needed
136132
if update:
137133
command_args.append('--update')
@@ -227,10 +223,6 @@ def publish(self) -> None:
227223
# Add build mode (build everything for publishing)
228224
command_args.extend(['--build', 'missing'])
229225

230-
# Add profiles
231-
command_args.extend(['--profile:host', 'default'])
232-
command_args.extend(['--profile:build', 'default'])
233-
234226
# Log the command being executed
235227
logger.info('Executing conan create command: conan %s', ' '.join(command_args))
236228

0 commit comments

Comments
 (0)