We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e374f commit 0d49d13Copy full SHA for 0d49d13
1 file changed
cookiecutter/update_pulp_cli.py
@@ -9,6 +9,7 @@
9
10
import json
11
import logging
12
+import subprocess
13
import urllib.request
14
15
import tomlkit
@@ -119,6 +120,9 @@ def main() -> None:
119
120
121
with open("pyproject.toml", "w") as fp:
122
tomlkit.dump(pyproject_toml, fp)
123
+ ret = subprocess.call(["uv", "sync"])
124
+ if ret != 0:
125
+ raise RuntimeError("uv sync failed.")
126
127
128
if __name__ == "__main__":
0 commit comments