Skip to content

Commit 8eaa913

Browse files
committed
fix build
1 parent 0bafdf7 commit 8eaa913

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ def fail_and_revert(msg):
8787
fail_and_revert("Failed to push")
8888

8989
# 1. build the package via uv
90-
print("uv build -c")
91-
if subprocess.run(["uv", "build", "-c"]).returncode != 0:
90+
print("uv build")
91+
if subprocess.run(["uv", "build"]).returncode != 0:
9292
fail_and_revert("Failed to build the package")
9393

9494
# 2. create a new release

0 commit comments

Comments
 (0)