We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4fbfd commit 4d7261aCopy full SHA for 4d7261a
envoy.distribution.repo/envoy/distribution/repo/deb.py
@@ -120,12 +120,14 @@ async def create_distro(self, distro: str) -> None:
120
if await self.distro_exists(distro):
121
await self.drop_distro(distro)
122
self.log.notice(f"Creating deb distribution: {distro}")
123
- self.log.success(
+ result = (
124
(await self.aptly(
125
"repo", "create",
126
f"-distribution=\"{distro}\"",
127
"-component=main",
128
distro)).split("\n")[0])
129
+ breakpoint()
130
+ self.log.success(result)
131
132
async def create_snapshot(self, distro: str) -> None:
133
if await self.snapshot_exists(distro):
0 commit comments