diff --git a/src/caelestia/subcommands/install.py b/src/caelestia/subcommands/install.py index 0042d15..b8b97d3 100644 --- a/src/caelestia/subcommands/install.py +++ b/src/caelestia/subcommands/install.py @@ -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}")