diff --git a/src/apm_cli/compilation/distributed_compiler.py b/src/apm_cli/compilation/distributed_compiler.py index c986b8bb9..0f45482b8 100644 --- a/src/apm_cli/compilation/distributed_compiler.py +++ b/src/apm_cli/compilation/distributed_compiler.py @@ -555,7 +555,7 @@ def _generate_agents_content( # Footer sections.append("---") sections.append("*This file was generated by APM CLI. Do not edit manually.*") - sections.append("*To regenerate: `specify apm compile`*") + sections.append("*To regenerate: `apm compile`*") sections.append("") content = "\n".join(sections) diff --git a/src/apm_cli/compilation/template_builder.py b/src/apm_cli/compilation/template_builder.py index fd8799d1d..2a2a2eae8 100644 --- a/src/apm_cli/compilation/template_builder.py +++ b/src/apm_cli/compilation/template_builder.py @@ -133,7 +133,7 @@ def generate_agents_md_template(template_data: TemplateData) -> str: # Footer sections.append("---") sections.append("*This file was generated by APM CLI. Do not edit manually.*") - sections.append("*To regenerate: `specify apm compile`*") + sections.append("*To regenerate: `apm compile`*") sections.append("") return "\n".join(sections) \ No newline at end of file