chore(clan/vars): make no-sandboxing message print a more explizit re-run command

This commit is contained in:
Johannes Kirschbauer
2025-04-10 22:39:27 +02:00
parent 5342428fc6
commit ffb1d51fc4

View File

@@ -215,7 +215,7 @@ def execute_generator(
if not no_sandbox:
msg = (
f"Cannot safely execute generator {generator.name}: Sandboxing is not available on this system\n"
f"Re-run with --no-sandbox to disable sandboxing"
f"Re-run 'vars generate' with '--no-sandbox' to disable sandboxing"
)
raise ClanError(msg)
cmd = ["bash", "-c", str(final_script)]