From 66c2a9bf073198548f3f7ceff27424e4212d8da5 Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Fri, 18 Sep 2026 01:35:09 +0000 Subject: [PATCH] release.py: print the publish command unindented, on its own line --- scripts/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.py b/scripts/release.py index 6ccb573..50d07b5 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -151,7 +151,7 @@ def main() -> None: print(f"\nBuild completed successfully for version {version}.") print("To publish, review the artifacts and run:") - print(" uv publish && cd paskia-js && npm publish") + print("\nuv publish && cd paskia-js && npm publish") if __name__ == "__main__":