Skip to content

Commit

Permalink
Doesn't compile when no Kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
naitikrambhia committed Nov 15, 2024
1 parent 3300a3a commit 84c2739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pros/cli/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def new_project(ctx: click.Context, path: str, target: str, version: str,
ui.echo('New PROS Project was created:', output_machine=False)
ctx.invoke(info_project, project=project)

if compile_after or build_cache:
if (compile_after or build_cache) and not no_default_libs:
with ui.Notification():
ui.echo('Building project...')
exit_code = project.compile([], scan_build=build_cache)
Expand Down

0 comments on commit 84c2739

Please sign in to comment.