Merge pull request 'chore(clan/vars): make no-sandboxing message print a more explizit re-run command' (#3276) from hsjobeki/clan-core:chores into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/3276
This commit is contained in:
hsjobeki
2025-04-10 20:55:14 +00:00

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)]