Skip to content

Commit 4d7261a

Browse files
committed
envoy.distribution.repo/
1 parent 5d4fbfd commit 4d7261a

File tree

1 file changed

+3
-1
lines changed
  • envoy.distribution.repo/envoy/distribution/repo

1 file changed

+3
-1
lines changed

envoy.distribution.repo/envoy/distribution/repo/deb.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,14 @@ async def create_distro(self, distro: str) -> None:
120120
if await self.distro_exists(distro):
121121
await self.drop_distro(distro)
122122
self.log.notice(f"Creating deb distribution: {distro}")
123-
self.log.success(
123+
result = (
124124
(await self.aptly(
125125
"repo", "create",
126126
f"-distribution=\"{distro}\"",
127127
"-component=main",
128128
distro)).split("\n")[0])
129+
breakpoint()
130+
self.log.success(result)
129131

130132
async def create_snapshot(self, distro: str) -> None:
131133
if await self.snapshot_exists(distro):

0 commit comments

Comments
 (0)