Replaced false make messy-build by make setup

This commit is contained in:
2025-12-16 20:51:37 +01:00
parent 57154bc6e7
commit 14548cbc52
3 changed files with 6 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@@ -63,8 +63,8 @@ def run_ansible_playbook(
# 2) Build Phase
# ---------------------------------------------------------
if not skip_build:
print("\n🛠️ Running project build (make messy-build)...\n")
subprocess.run(["make", "messy-build"], check=True)
print("\n🛠️ Running project build (make setup)...\n")
subprocess.run(["make", "setup"], check=True)
else:
print("\n🛠️ Build skipped (--skip-build)\n")