chore: log -> info for hooks

This commit is contained in:
2 * r + 2 * t
2026-06-14 23:57:19 +10:00
parent a8d67b44ee
commit 1fc51410fc
+1 -1
View File
@@ -209,7 +209,7 @@ class Command:
log("Running post-install hooks...")
env = {**os.environ, "CAELESTIA_DOTS": str(dots_dir)}
for hook in hooks:
log(f"Running hook: {hook}")
info(f"Running hook: {hook}")
result = subprocess.run(hook, shell=True, env=env)
if result.returncode != 0:
warn(f"hook exited with {result.returncode}")