From 9be1136ba480ebd298e9ebeaeb442efc4e336839 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 13 Aug 2026 15:27:11 -0400 Subject: [PATCH] Normalize destination directory in osdeploy fetch --- confluent_server/bin/osdeploy | 1 + 1 file changed, 1 insertion(+) diff --git a/confluent_server/bin/osdeploy b/confluent_server/bin/osdeploy index 8dd6c139..ce54afb4 100644 --- a/confluent_server/bin/osdeploy +++ b/confluent_server/bin/osdeploy @@ -543,6 +543,7 @@ async def oslist(): async def download_image(distname, destdir): + destdir = os.path.abspath(destdir) dlinfo = await download.get_dlinfo(distname) if not dlinfo.iso_url: sys.stderr.write('No download information available for {0}\n'.format(distname))